Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //https://youtu.be/LbGXksLq-yM
- void OnStart()
- {
- DibujarLinea(rand()+rand(),1.1);
- DibujarLinea(rand()+rand(),1.2);
- DibujarLinea(rand()+rand(),1.3);
- DibujarLinea(rand()+rand(),1.0);
- }
- void DibujarLinea(string Identificador, double Posicion)
- {
- ObjectCreate(NULL,Identificador ,OBJ_HLINE,0,0,Posicion);
- ObjectSetInteger(0,Identificador ,OBJPROP_COLOR,clrRed);
- ObjectSetInteger(Symbol(),Identificador ,OBJPROP_WIDTH,1);
- ObjectSetInteger(_Symbol,Identificador,OBJPROP_STYLE,STYLE_DASH);
- ObjectSetInteger(NULL,Identificador,OBJPROP_TIMEFRAMES,OBJ_PERIOD_D1 + OBJ_PERIOD_H1);
- }
Advertisement
Add Comment
Please, Sign In to add comment