you are viewing a single comment's thread.

view the rest of the comments →

[–]humancorpse[S] 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

and now it has already begun another position..

this is what i call a "gridding" trading system.. it is the most dangerous and crazy way to trade...

in this example, the current price is below the "target price"(red line with a white tip) and it places a trade when it is 8 pips below and then 12 pips below and so on and so on and then when the price goes onto the other side of the take profit it will close the trades in profit using a stoploss.

https://files.catbox.moe/jyxgnl.png

and since in started writing this comment it has opened a second trade.

https://files.catbox.moe/xke1bi.png

when the current price is below the target my bot will open more and more trades as the price goes down.. can you see how this is a dangerous and foolish way to trade? if the price were to keep going down, my account would blow up due to margin calls.

if(pos>=8) wantlots+=baselots; 
if(pos>=12) wantlots+=baselots; 
if(pos>=16) wantlots+=baselots; 
if(pos>=20) wantlots+=baselots; 
if(pos>=24) wantlots+=baselots; 
if(pos>=28) wantlots+=baselots; 
if(pos>=32) wantlots+=baselots; 
if(pos>=36) wantlots+=baselots; 
if(pos>=40) wantlots+=baselots;