// Input for EMA lengths ema21Length = input.int(21, title="EMA 21 Length") ema50Length = input.int(50, title="EMA 50 Length")
// Stop loss and take profit in pips stopLossPips = input.int(50, title="Stop Loss (pips)") takeProfitPips = input.int(100, title="Take Profit (pips)")
// Convert pips to price (adjust for pip value based on market type) pipValue = syminfo.mintick stopLossPrice = stopLossPips * pipValue takeProfitPrice = takeProfitPips * pipValue
In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in publication is governed by House rules. You can favorite it to use it on a chart.
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.