Profit Sniper Strategy Finder icon

Profit Sniper Strategy Finder

Extension Delisted

This extension is no longer available in the official store. Delisted on 2025-09-16.

Extension Actions

CRX ID
lghebnjbammcgdpbpccafiemocldgfna
Status
  • Minor Policy Violation
  • Removed Long Ago
  • Unpublished Long Ago
Description from extension meta

Find the best settings for Profit Sniper

Image from store
Profit Sniper Strategy Finder
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

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)); }