strategy("risk to reward 1:1", overlay=true)
//Buy entry
longEntryCondition = close > nz(longEntryCondition[1],open) and (close - open)[1] > 0
if longEntryCondition and not nz(longExitCondition[1],false)
strategy.entry("Long", strategy.long, comment="Buy")
//Stoploss
stopLevel = open - (open - close)[1]
if longEntryCondition
strategy.exit("StopLoss", "Long", stop=stopLevel, comment="StopLoss")
//Take profit
takeProfitLevel = entryPrice + (open - close)[1]
if longEntryCondition
strategy.exit("TakeProfit", "Long", profit=takeProfitLevel, comment="TakeProfit")
//Buy entry
longEntryCondition = close > nz(longEntryCondition[1],open) and (close - open)[1] > 0
if longEntryCondition and not nz(longExitCondition[1],false)
strategy.entry("Long", strategy.long, comment="Buy")
//Stoploss
stopLevel = open - (open - close)[1]
if longEntryCondition
strategy.exit("StopLoss", "Long", stop=stopLevel, comment="StopLoss")
//Take profit
takeProfitLevel = entryPrice + (open - close)[1]
if longEntryCondition
strategy.exit("TakeProfit", "Long", profit=takeProfitLevel, comment="TakeProfit")
Declinazione di responsabilità
Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.
Declinazione di responsabilità
Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.