Nabeel Bashir / Profile
- Information
no
experience
|
0
products
|
0
demo versions
|
0
jobs
|
0
signals
|
0
subscribers
|
Friends
Requests
Add friends via their profile or user search and you will be able to see if they are online
Outgoing
Nabeel Bashir
Added topic input parameter default value based on chart timeframe
How can I set the default value of an integer input parameter based on chart timeframe ? For example if loaded in 1min, the default value becomes 123 and for 5min chart it becomes 456
Nabeel Bashir
Published MetaTrader 4 signal
I have been using my personal Golden trade system for last some months and it is very successful so far. These signals are for 5min timeframe. I don't want to fill this space with unnecessary details. The results will speak for themselves
Nabeel Bashir
Added topic Switching from local agents to MQL5 Cloud agents during a running test
I started backtesting an EA using MQL5 Cloud and after about 70% passes, my balance finished, so I enabled my local CPU cores then but the passes are still running after 1 day. I want to know if I add balance to my MQL5 Cloud account and Enable Cloud
Nabeel Bashir
Added topic Is this MQL5 Cloud Network fee correct in my sceanrio?
Using MQL5 Cloud Network setting, I tried to backtest my EA for historical data between 1st June 2024 and 12 February 2025. It shows 196,800 passes are needed and already charged $ 158.78 from my balance. After about 80% testing I see the
Nabeel Bashir
Added topic How to close a partial position using standard functions
I open a trade using the below code: MqlTradeRequest request = {}; request.action = TRADE_ACTION_DEAL ; // Specify a market order request.symbol = _Symbol ; request.volume = lot;
Nabeel Bashir
Added topic Is AccountInfoDouble(ACCOUNT_PROFIT) the function for my need?
Is the value returned by `AccountInfoDouble( ACCOUNT_PROFIT )` function the profit of all the currently open positions or today's profit of all the CLOSED + OPEN trades? I want to know the today's profit of my EA. How should I use this function
Nabeel Bashir
Added topic "array out of range" error while accessing double &volume[]
This is a very simple practice indicator, with minimal code. I drag it to BTCUSD 15m chart and I get "array out of range" error. Why is it so and what is the workaround? //+------------------------------------------------------------------+
Nabeel Bashir
Added topic How to protect my EA through a license key?
How can I implement logic in my EA that it may work on demo accounts but not on live accounts without a license key
Nabeel Bashir
Added topic is this way of closing a position wrong?
I have omitted error handling for brevity. Let's assume there are no error while opening a position. The below code works fine for me. MqlTradeRequest request; MqlTradeResult result; ZeroMemory (request); // Ensure request structure is
Nabeel Bashir
Added topic How to backtest an EA for multiple days but balance reset after every day automatically
Is there way to test an EA for multiple days together but in an isolated test for each day? For example I want to test my EA for a date range between 1st July and 15th July but for each day I want my EA to have the parameters and balance values
Nabeel Bashir
Added topic Can I divide my account balance in two or more expert advisors?
Sorry if this sounds a very naive question but I really am looking for an answer. Let's say my account balance with a broker is $2000 and I have downloaded 2 different expert advisors, namely ABC and XYZ. Now I want to run these both EAs on two
Nabeel Bashir
Added topic Newbie wants to draw a horizontal line in 'OnCalculate()' function
I found the below mentioned snippet somewhere online and am trying to use it inside `OnCaculate()` function to draw a horizontal line on, let's say the maximum value in last 5 minutes. int i; //let's assum it has a valid value for the highest value
: