Buonasera a tutti,una cortesia,da neofita ho creato un signal usando il BeeSwing Trailing usando solo la parte Buy che posto sotto:

Buy Script

INPUTS: @periods(2), @trailAmount(10), @trailPercent(2), @stopLoss(75)

SET TRAILING_STOP = @trailAmount
SET TRAILING_PERCENT = @trailPercent
SET STOP_LOSS = @stopLoss

SET hh = HighestHighValue(@periods)
SET ll = LowestLowValue(@periods)

HIGH = hh AND TIME > 915 AND TIME < 1725

# REQUIRED_BARS is used to adjust how many periods will be used to initialize calculations. Default value is 50 periods.

# Un-comment and edit the line below to set your own value.
# SET REQUIRED_BARS = 50

ExitLongScript

#SET hh = HighestHighValue(@periods)
SET ll = LowestLowValue(@periods)

LOW = ll AND TIME > 915 AND TIME < 1725

Poi ho lanciato il tab Strategy in paper

al segnale in entrata è arrivata la notifica,fin qui tutto ok

poi è il titolo ha raggiiunto il Trailing Stop su segnale in uscita ma la notifica non è arrivata.

Vi chiedo da neofita come funziona la notifica:

viene inviata solo al segnale di Buy in questo caso o ExitLongScript?

Mentre sui segnali di Trailing Stop,Take Profit,Stop Loss non viene inviata la notifica?

Vi ringrazio in anticipo

Pierangelo