Forum

Grid Code Request

int start() { for ( int i = 1 ; i <= gridlines; i++) { if ((Bid == gridstart + i*step)) { int buy = OrderSend ( Symbol (),OP_BUY,lot,Ask, 0 , 0 ,Ask+step,Comments,MagicNumeber, 0 ); int sell = OrderSend ( Symbol (),OP_SELL,lot,Bid, 0 , 0 ,Bid+step,Comments,MagicNumeber, 0 ); } }

Grid Trading EA (Let Profits Run)

//+------------------------------------------------------------------+ //| Let Profits Run EA (Buy Only) v3.20 //+------------------------------------------------------------------+ #property copyright "Aladdin Abdulkareem" #property link "" extern int MagicNumeber; extern double GridStep

Tell Me How to Share EA Strategy/Profit?

Hello guys, A lot of traders who don't know to write a code may have great ideas about EA's strategies, however, they are afraid to share it with coders as those ea ideas might be theft and sold by the coder himself. Is there any protocol to share the profit of selling an EA between the author and

Close Order After Specific Number of Renko Boxes Formed

Hello everyone! I'm a fan of Renko Chart, but I have no idea about coding, Can anyone help me to script this?!... To close the opened position after specific count of renko boxes!! Thanks in advance