Specification
IMPORTANT ( the source code must be provided with the comments in the code explaining what the code is doing so i can follow the process.
I require the expert advisor to use the RSI indicator to open and close positions based on a percentage of my account balance. for example if starting with 10,000 and it makes a trade with a 50 dollar profit , the next trade should consider the trade size based on the total amount in the account and use XX% of the total balance to make the next trade. this will due to the fact i will have the expert advisor running on 10 different charts simultaneously.
The RSI LOWER LIMIT should be adjustable in the source code as a variable on the top to open positions
The RSI UPPER LIMIT should be adjustable in the source code as a variable on top to close positions
The percentage of the account balanced used should also be adjustable as a variable at the top of the source code
It shall not enter another trade while a position is open and must wait till the current holding is closed before buying the next position. Essentially 1 trade at a time.
for example:
int Rsi_Period = 14;
double RSI_Upper_Limit = 70;
double RSI_Lower_Limit = 30;
int Percent of Account Balance = 10;
Trade time Open = 09:35;
Trade Time Close = 15:55;
I will need these (as above ) as comments in the current chart, current symbol and for the current timeframe etc
also to be printed out in the logs when the advisor is initialized and De-Initialized , also to be printed in the log the total account balance, the P/L for the particular trade , total trades placed , size of trade , price of trade , and the total win rate,.
I will require this code to be written and provided within 1 day.
You can contact me for anymore info you require for coding this expert advisor , or if you feel you could add to the code to make it more usefull i am open to suggestions.
I lok forward to hearing from you :)