//+------------------------------------------------------------------+ //| topman1.mq4 | //| Copyright 2020, Cuongitl. | //| https://t.me/Cuongitl | //+------------------------------------------------------------------+ #property copyright "Copyright 2020, Cuongitl." #property link "https://t.me/Cuongitl" #property version "1.00" #property strict //+------------------------------------------------------------------+ //| Expert initialization function | //+------------------------------------------------------------------+ // -- Dữ liệu đầu vào: // Input1 extern string s1 = "DU LIEU CHUNG"; extern double Inpvol = 0.01; extern int InpStopLoss = 100; extern int InpTakeProfit = 100; // Input1 extern string s2 = "Parameter 1"; extern ENUM_TIMEFRAMES InpTimeFrame = PERIOD_H4; // -- tu suy nghi them! hehe!! //--------------------------------------------------------------- int OnInit() { //--- //--- return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Expert deinitialization function | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { //--- } //+------------------------------------------------------------------+ //| Expert tick function | //+------------------------------------------------------------------+ void OnTick() { //--- } //+------------------------------------------------------------------+