Indicator Alert Notification  [SOLVED]

Questions about MultiCharts and user contributed studies.
ctu1121
Posts: 135
Joined: 05 Jul 2012
Has thanked: 10 times
Been thanked: 4 times

Indicator Alert Notification

Postby ctu1121 » 11 Jul 2014

Hi there,
May request Multicharts to send me email while , while indicator reached a specific target price?

For example, my indicator study is as below

Code: Select all

value1=close of data1;
value2=close of data2;
value3=value1+value2;
plot1(value3);
May I request Multichart to send me email notification while value3 is bigger than a specific number? Thanks for your valuable information.

Charles

User avatar
Henry MultiСharts
Posts: 9165
Joined: 25 Aug 2011
Has thanked: 1264 times
Been thanked: 2957 times

Re: Indicator Alert Notification

Postby Henry MultiСharts » 11 Jul 2014

Hello Charles,

That is possible to do that. Please see Alert and Setting Alerts.

sptrader
Posts: 742
Joined: 09 Apr 2010
Location: Texas
Has thanked: 483 times
Been thanked: 274 times
Contact:

Re: Indicator Alert Notification

Postby sptrader » 11 Jul 2014

You could try something like this example (from TJ, I think) ...(I haven't tested it).

Code: Select all

if value3 > "your price" then begin

alert( " Value3 Price Exceeded " + text(barinterval:0:0) + " Chart");

end;

ctu1121
Posts: 135
Joined: 05 Jul 2012
Has thanked: 10 times
Been thanked: 4 times

Re: Indicator Alert Notification

Postby ctu1121 » 11 Jul 2014

Hi sptrader,
Thanks for your reply. I think I could see alter then price reached target price.
May I see email notification?

Charles

sptrader
Posts: 742
Joined: 09 Apr 2010
Location: Texas
Has thanked: 483 times
Been thanked: 274 times
Contact:

Re: Indicator Alert Notification  [SOLVED]

Postby sptrader » 11 Jul 2014

Hi sptrader,
Thanks for your reply. I think I could see alter then price reached target price.
May I see email notification?

Charles
************************************************************************
*When you go to your study and select "format" , you will see "alerts" so check that, then you'll have the option of selecting "email alerts", you have to set up the email for your email address etc, but then it will send you email alerts too.

ctu1121
Posts: 135
Joined: 05 Jul 2012
Has thanked: 10 times
Been thanked: 4 times

Re: Indicator Alert Notification

Postby ctu1121 » 11 Jul 2014

Great, thanks a lot.

User avatar
TJ
Posts: 7740
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2221 times

Re: Indicator Alert Notification

Postby TJ » 11 Jul 2014

Hi sptrader,
Thanks for your reply. I think I could see alter then price reached target price.
May I see email notification?

Charles
see post #13
[FAQ]
viewtopic.php?f=16&t=6845


Return to “MultiCharts”