Find the best settings for Profit Sniper
Total ratings
1.00
(Rating count:
1)
User reviews
Recent rating average:
1.00
All time rating average:
1.00
Rating filters
5 star 4 star
3 star
2 star
1 star
Date | Author | Rating | Lang | Comment |
---|---|---|---|---|
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)); } |