thinkorswim programming

Had guy make a simple indicator that when a candle switches from solid to clear and visa vresa it alerts me . It make the sound but doesnt sms/email me . The guy says it works on his side and as i get the one that has no customer service he just keeps saying it works in his end . So before i demand my money back any progammers can give me advice . I think on his indicator he needs a command to send text . He says its all set up in set up-- notifications. see images attached alert 1.jpg alert.jpg
 
I would suspect that sms/email is not working from your system. To test, ask the programmer to build a very simple app that does nothing but send an sms and email message from your system. Assuming it doesn't work, start troubleshooting from there.
 
Or, using the tags I suggested,
Code:
def t1=close>open and close[1]<open[1];
def t2=close<open and close[1]>open[1];

Alert(t1 or t2, "alert!", Alert.BAR);
 
I can code thinkscript.

You don't have to pay, but tips are nice. Even stuff like "don't play with matches". That one really made a difference in my life.

Anyway, PM if you want help, or something created.
 
Back
Top