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")
Thông báo miễn trừ trách nhiệm
Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.
Thông báo miễn trừ trách nhiệm
Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.