|
Mini A/c
The edit by frosk in post #56 does not work with my real a/c. As before it works fine with my Demo a/c.
When I select it for my real a/c it will not appear on the screen. I have an InterTradeBank Mini a/c with a balance of $500. The edit that frosk inserted was to comment out the MathFloor calculation and return the position size. Any ideas how I might edit to work with my mini a/c.
double PoseSize()
{
double result;
double PoseSize;
double RP;
RP=RiskInPoints();
if(PointCost()>0&&RP>0)
{
PoseSize=(AccountBalance()*Risk/1000)/(RP*PointCost());
//result=MathFloor(PoseSize*10)/10;
result=PoseSize;
}
else
result=0;
return(result);
}
Thanks,
Toriacht
Last edited by newdigital; 04-09-2008 at 10:21 AM.
|