Im a programmer but new to proRealTime V12, just learning.
Is there any way I can:
1: Sound a default alarm “Alarm(<millisec>)” in proRealTime when an indicator is at an interesting level?
2: Draw a messagebox that is shown for some seconds when an indicator is at an interesting level?
Thanks in advance
Mi
See attached, is the inbuilt Alarm / Alert of use to you?
I use it loads during manual trading.
Thank you for the reply.
Yes, I can set an alarm, but Im looking for a way to sound an alarm/alert from within the code of a indicator when “all the stars are alligned” in my own indicator.
Have been looking through documentation and it seems like there isn’t any way I can code this into my own indicator.
/Mi
Would it work if you set up your Indicator to run on backtest and then continue to run forward on Live data and then set the inbuilt Alert to sound / send an email when ‘all the stars align’.
Above is while you are concurently running your Indicator within an Algo.
Hope above makes sense, just say if not?
Code cannot use peripherals of any kind, so no sound, voice, mouse, keyboard, hd and printers can be used.
Could you not code your own indicator for when “all your stars align”, such that it returns a result of, say, 1 if they align for a long or -1 if they align for a short. Then simply use the inbuilt alert to be triggered if your indicator is above 0.5 or below -0.5.
I use this method and it works well
RR
Yes, this makes sense as very probable. I am working on something similar.