WHAT APPEARS TO BE WRONG WITH THIS CODE NOT WORKING? THANKS FOR THE HELP
// Calculate the Average True Range (ATR)
ATR_Length = 14
ATR = AverageTrueRange(ATR_Length)
indicator1 = supertrend[Multiplier, Length]
if close crosses over indicator1 then
buy at market
endif
if close crosses under indicator1 then
sellshort at market
endif
set target pprofit 50
set target pprofit 12 // Profit target of 12 points
// Set stop loss at 1.5 times ATR
ATR_Value = valuewhen(1, ATR)
SET STOP PTRAILING TRAILING Ptrailing ATR_Value * 1.5