Looking for a Professional and expert on excel that could build a trading journal to log all the information about all the trades taking daily
example of all the values that i need below.
I need to create a dynamic excel table for my trading journal and to be able to typing and changes thing like name of the trades position size ETC
This is an examples of thing that I need
Trade number(1,2,3 infinito ,
Date , 6/19/2023
Time in and time out and the average time in the market (9:30-10:30 average 1 hour)
Instrument trade( All the futures(MICRO FUTURES or emini(MNQ,MES,M2K,ES,NQ YM ,etc
Time frame (4h,5m,2m, etc
Direction (Short/long)
Name of the trade (able to type in any name I want)
Position size( 1 lote ,2 lotes,3 lotes
Risk taken (200$
win o loss by lote 1, lote2( example lote 1 =200,lote=400$
Commissions
Result
The accumulated
Risk/Reward (1 to 2 or 1 to 3
And I need a statistical summary of all the trades like
%profit%stop ,Ratio profit/loss, net profit , start up capital,drawdown max of the account
Similar orders
PHANTOM PROTOCOL V1 – MT5 EXPERT ADVISOR SPECIFICATION Develop a professional MetaTrader 5 (MT5) Expert Advisor named “PHANTOM PROTOCOL V1”. PRIMARY MARKET: - XAUUSD (Gold) - Designed primarily for M15 and H1 timeframes. - The EA must work with both 3-digit and 2-digit gold pricing where applicable. TRADING LOGIC: Use pure price-action and market-structure analysis rather than relying on a single indicator. The EA
Create a bot that can trade and read indicators easy to read for first time users. Bot that can be used on a phone and connect to MT5. It should be easy to install or use on any device especially phone and laptop, preferably the bot that can run over night and controllable when needed
//———————————————————————————————————————————————————————————————————— struct S_MCAV { double matureSum; double totalSum; double value; void Init () { matureSum = 0.0; totalSum = 0.0; value = 0.5; } void AddContext (int ctx) { totalSum += 1.0; if (ctx == 1) matureSum += 1.0; } void ApplyDecay (double rate) { matureSum *= rate; totalSum *= rate; } void Update () {