Max trade volume checker for your trading account (Script version):
Author: Conor Mcnamara
Hello,
Can you write the following software:
If I have a LOT max that corresponds to Free Margin.
I have three orders with:
LOT1;
LOT2 = LOT1 x 2;
LOT3 = LOT1 x 3;
How do I calculate LOT1 max so that all three orders are placed?
Thanks in advance.
@Marin Zlatev #: Can you write the following software: If I have a LOT max that corresponds to Free Margin. I have three orders with:
LOT1;
LOT2 = LOT1 x 2;
LOT3 = LOT1 x 3;
How do I calculate LOT1 max so that all three orders are placed?
LotsTotal = Lot1 + Lot2 + Lot3 = Lot1 + ( Lot1 * 2 ) + ( Lot * 3 ) = Lot1 * ( 1 + 2 + 3) = Lot1 * 6
Lot1 = LotsTotal / 6
As for the code, either learn to code it, or study this or other CodeBase examples, or hire someone in the Freelance section.
Hello,
Can you write the following software:
If I have a LOT max that corresponds to Free Margin.
I have three orders with:
LOT1;
LOT2 = LOT1 x 2;
LOT3 = LOT1 x 3;
How do I calculate LOT1 max so that all three orders are placed?
Thanks in advance.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Max trade volume checker for your trading account (Script version):
A script which when run displays the maximum lot size permitted on the asset.
Author: Conor Mcnamara