if I was looking to set an exit long with a specific $ profit target what would it be?
exitlong("buyex","",1,entryprice+$500,limit,day)
what would the correct code be for the dollar amount?
And If I was looking to set it at a certain amount of minimum movements(say 5 here) to test on a basket of products,
would the following cover it?
Minmove = getactiveminmove()
exitlong("buyex","",1,entryprice+minmove*5,limit,day)
|