-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Q: How to backtesting Micro-Futures #314
-
When trading Micro-Futures
- there is a fixed commission say 0.77€/contract. As I understand it's not possible to have fixed commission with this framework?
- one tick (0.25) in price is worth 1.25€. Is there a way to simulate this?
Thx
Beta Was this translation helpful? Give feedback.
All reactions
-
🎉 1
Replies: 4 comments 1 reply
-
- there is a fixed commission say 0.77€/contract. As I understand it's not possible to have fixed commission with this framework?
Indeed, duplicate of #113. Something simple adversarial as this might work:
commission = ceil(0.77 / data.Close.mean() * 1e3) / 1e3
- one tick (0.25) in price is worth 1.25€. Is there a way to simulate this?
I don't quite get it. One tick (1/4) in price is worth 1.25€? So four ticks (4/4) signify a move of 5€? Can you show a sample of your data?
Beta Was this translation helpful? Give feedback.
All reactions
-
I don't quite get it. One tick (1/4) in price is worth 1.25€? So four ticks (4/4) signify a move of 5€? Can you show a sample of your data?
Exactly.
image
See here:
CME Group
Beta Was this translation helpful? Give feedback.
All reactions
-
Here are same trading examples. Red lined example is 2 ticks ( tick size 0.25) which is then 2.50€.
image
Beta Was this translation helpful? Give feedback.
All reactions
-
If you get 5€ per every unit of price, seems to me simply multiplying data
by 5 should do it.
Beta Was this translation helpful? Give feedback.
All reactions
-
In fact there are many more factors in futures trading that are different from stocks.
Futures have an initial margin and intraday margin for some brokers. This mean you can open a position controlling a notional value of around a million dollars with 500ドル. So there is no leverage like in the CFD or Forex brokers like 1 to 100, there is a certain amount of money to open a huge position per contract. This is why it's appealing for day trading.
Also, the minimum price fluctuation is called Tick Size, which is different in every futures contract, and each tick has a Tick Value.
Beta Was this translation helpful? Give feedback.