View Single Post
  #10 (permalink)  
Old 06-28-2006, 10:16 PM
Aaragorn's Avatar
Aaragorn Aaragorn is offline
Senior Member
 
Join Date: Jun 2006
Location: USA
Posts: 801
Aaragorn is on a distinguished road
so if I understand correctly this would be the top line of the channel...

PHP Code:
ObjectSet("1"+sName,OBJPROP_TIME1,Time[p]);
ObjectSet("1"+sName,OBJPROP_PRICE1,price_p1);
ObjectSet("1"+sName,OBJPROP_TIME2,Time[0]);
ObjectSet("1"+sName,OBJPROP_PRICE2,price_01); 
this is the dotted line in the middle of the channel....

PHP Code:
ObjectSet("0"+sName,OBJPROP_TIME1,Time[p]);
ObjectSet("0"+sName,OBJPROP_PRICE1,price_p0);
ObjectSet("0"+sName,OBJPROP_TIME2,Time[0]);
ObjectSet("0"+sName,OBJPROP_PRICE2,price_00); 
and this is the bottom line of the channel...

PHP Code:
ObjectSet("2"+sName,OBJPROP_TIME1,Time[p]);
ObjectSet("2"+sName,OBJPROP_PRICE1,price_p2);
ObjectSet("2"+sName,OBJPROP_TIME2,Time[0]);
ObjectSet("2"+sName,OBJPROP_PRICE2,price_02); 

is that correct?
Attached Files
File Type: mq4 ang_AutoCh_HL-v1.mq4 (5.3 KB, 21 views)

Last edited by Aaragorn; 06-28-2006 at 10:20 PM.
Reply With Quote