Minimum size discrepancy
- This topic has 4 replies, 2 voices, and was last updated 2 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
Forums › ProRealTime English forum › ProOrder support › Minimum size discrepancy
Hello everyone and happy new year!
I am trying to run a new strategy on spread-bet demo and keep getting rejected. I like to run the smallest size possible, which I believe to be £0.05 per point on DJI (see attached screenshot taken from IG), however in the PRT order list it gives £1 per point as the minimum.
I have made a code to see what can get through on the backtest and that came back as 0.2 – still much more than expected.
Any ideas?
cheers
Leo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
defparam cumulateorders = false positionsize = 0.2 if high > low then buy positionsize perpoint at market endif if longonmarket and low > high then sell at market exitshort at market endif //-----// if low > high then sellshort positionsize perpoint at market endif if shortonmarket and low < high then sell at market exitshort at market endif |
I believe to be £0.05 per point on DJI
With IG on SB, min pos size on DJI is …
IG have a ‘reduced minimum pos size’ for 1 month after opening an account.
https://www.ig.com/uk/reduced-minimums
Ispent 5 mins or so trying to find a link for you to IG’s ‘standard position sizes’ (applied after the first 1 month) … I could not find a link for you, sorry.
Here is a link to the type of info you need (link below is for CFD’s).
IG have a ‘reduced minimum pos size’ for 1 month after opening an account.
Aha! That will be why. You’ll recall from another thread I only recently opened my SB account.
Thanks for your help!
Leo