SD_Test_Test_values_print

Author: Dina Paches
0 Views
0 Downloads
0 Favorites
SD_Test_Test_values_print
ÿþ//+------------------------------------------------------------------+

//|                                    SD_Test_Test_values_print.mq5 |

//|                                                      Dina Paches |

//|                           https://login.mql5.com/ru/users/dipach |

//+------------------------------------------------------------------+

//|"5AB>2K9 A:@8?B.                                                  |

//|@8 CAB0=>2:5 =0 3@0D8: ?>:07K205B :>>@48=0BK, A>>B25BAB2CNI85    |

//|B>G:5, 2 :>B>@>9 1@>H5= <KH:>9 40==K9 A:@8?B: =><5@ ?>4>:=0       |

//|3@0D8:0, x, y, time, price                                        |

//+------------------------------------------------------------------+

#property copyright "Dina Paches"

#property link      "https://login.mql5.com/ru/users/dipach"

#property version   "1.00"

//---

#include <Test_values_print.mqh>

//+------------------------------------------------------------------+

void OnStart()

  {

   int x = ChartXOnDropped();

   int y = ChartYOnDropped();

   //---

   TEST_PRINT_2_V(x,y);

   //---

   datetime time       = 0;

   double   price      = 0.0;

   int      sub_window = -1;

  //---

   bool res = ChartXYToTimePrice(0,x,y,sub_window,time,price);

//---

   TEST_PRINT_1_V(res);

//---

   if(res){TEST_PRINT_3_V(sub_window,time,DTS_DIGITS(price));}

//---

  }

//+------------------------------------------------------------------+

Comments