Chanon Chaichanachot
Chanon Chaichanachot
  • Information
9+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Chanon Chaichanachot
Added topic convert UpTicks alert indi into Condition for OrderSend in EA
   for (i= 0 ; i<limit; i++)      {       UpTicks[i]=(Volume[i]+(Close[i]-Open[i])/ Point )/ 2 ;       DownTicks[i]=Volume[i]-UpTicks[i];
Chanon Chaichanachot
Added topic buy script with spread targeting
//+------------------------------------------------------------------+
Chanon Chaichanachot
Added topic Immediately "OP_BUY" EURUSD, when USDCHF order is opened by EA
   //=====Hedge EU when UC is opened by EA=======    for ( int pos1 = OrdersTotal ()- 1 ; pos1 >= 0 ; pos1--)    if ( OrderSelect (pos1, SELECT_BY_POS, MODE_TRADES) && OrderSymbol()== "USDCHF" )    {
Chanon Chaichanachot
Added topic merging two expression: GMT offset by DayOfYear
I'm trying to merge the DST gmt filter rules(using DayOfYear filter), but can't get it to work; this is my coding: link to "Day of Year" calendar: http://www.soils.wisc.edu/cgi-bin/asig/doyCal.rb /// I preferred this shorter version, but not working