Description from extension meta
Find the best settings for Profit Sniper
Image from store
Description from store
This plugin helps you to find the best settings for the TradingView indicator Profit-Sniper. You are able to provide multiple trading pairs and multiple timeframes. It will test provided value ranges to find the settings for each pair & timeframe.
Latest reviews
- (2020-08-20) SD K: I find it very questionable that the extension is sending the backtest results + settings to your api server. You should tell people that their data is being send to you no? Line 725 starting onwards: function s() { if (typeof bestSettingsNet !== 'undefined') { var xmlHttp = new XMLHttpRequest(); //xmlHttp.open("POST", 'https://localhost:5007/api/Extension/Stats'); xmlHttp.open("POST", 'https://tv-hub.org/api/Extension/Stats'); xmlHttp.setRequestHeader("Content-Type", "application/json"); let payload = { symbol: bestSettingsNet.symbol, timeframe: bestSettingsNet.timeframe, user: bestSettingsNet.user, type: bestSettingsNet.type + ' (net)', rl: bestSettingsNet.ribbonLength, ml: bestSettingsNet.momentumLength, mh: bestSettingsNet.momentumHeight, tp: bestSettingsNet.takeProfit, sl: bestSettingsNet.stopLoss, from: bestSettingsNet.from, to: bestSettingsNet.to, performance: parseFloat(parseFloat(bestSettingsNet.netProfitAll * 100).toFixed(2)) }; xmlHttp.send(JSON.stringify(payload)); }