Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Youtube-> https://youtu.be/yTGEi4s8fL8
- int NumeroVela=200;
- //datetime Fecha=D'2021.12.31 00:00';
- //TimeCurrent()
- void OnStart()
- {
- MqlRates InfoPrecio[];
- ArraySetAsSeries(InfoPrecio,true);
- CopyRates(Symbol(),PERIOD_CURRENT,0,NumeroVela+1,InfoPrecio);
- CrearLinea("1",InfoPrecio[NumeroVela].time);
- }
- void CrearLinea(string identificador,datetime Posicion)
- {
- ObjectCreate(Symbol(),identificador,OBJ_VLINE,0,Posicion,0);
- ObjectSetInteger(Symbol(),identificador,OBJPROP_COLOR,clrYellow);
- ObjectSetInteger(Symbol(),identificador,OBJPROP_WIDTH,2);
- ObjectSetInteger(Symbol(),identificador,OBJPROP_STYLE,STYLE_DASH);
- }
Advertisement
Add Comment
Please, Sign In to add comment