Sanju Chand
Sanju Chand
Friends

Add friends via their profile or user search and you will be able to see if they are online

Sanju Chand
Added topic change timeframe of all open charts
Hi, I was wondering if there is an script to change the timeframe of all charts open in MT5. I have the MT4 code but am not able to make it work in MT5. Any help will be appreciated.  
Sanju Chand
Added topic Problem loading historical data
Hello, I have some issues loading historical data. I want to test an expert advisor for which I need lots of 1Min Historical data. 1. When I keep pressing the home button on the 1 min chart to load more historical data, there is only a few weeks back
Sanju Chand
Added topic need help with iCustom
Hello, I need a small help. I have written a simple weekly open, high low indicator that is working properly. Here is the code. However when i try to access this indicator from an expert advisor, it does not display the correct weekly open values
Sanju Chand
Registered at MQL5.community
Sanju Chand
Added topic test of trendlines
How can I write an EA that loops through all the open charts and sends an alert if the price has violated any of the trendlines drawn on the chart. I could write an EA and attach it to a single chart and that'd work. However I want one EA to loop
Sanju Chand
Added topic Lose trendlines when i apply a new template
Hi, When i change the template on a chart, i lose all the trendlines I had previously drawn. Is there any way to remedy this situation? I will appreciate any help. Thanks, Arooba
Sanju Chand
Added topic Live Trading and Demo Trading Simutaneously
How can I live trade an EA and demo trade a different EA at the same time. Do I need two different PC's fot this or I can somehow start two seperate instances of MetaTrader for doing this
Sanju Chand
Added topic Question on optimization
Hello...Is it normal that the number of trades placed by the optimization engine is far less that the number of trades placed by the tester using the optimal parameters returned during the optimizaton process..if so, what is the sanctity of the
Sanju Chand
Added topic Question on coding - How to store a persistant variable and use it for back testing
I have written an EA that opens orders and when the price reaches 1:1 RR ratio, moves SL to Breakeven. I need the program to remember this SL and I store in in a file that I retrieve later for my calculations. This works well in forward testing
Sanju Chand
Added topic Changing Timeframes in Strategy Tester
Hello, I am not able to change timeframes in the strategy tester . Is there anyway this can be done? I would like to use the strategy tester in visualization mode and would like to draw S/R lines on higher timeframes and simulate my trades on the
Sanju Chand
Added topic drawing symbols from EA
Is it possible to draw a arrow from an EA at the Bid price much like the function OrderSend draws an arrow upon successsful order execution? Any help will be appreciated
Sanju Chand
Added topic Indicator draws with incorrect shift
Hello,  I am trying to draw an indicator when MACD turns direction from up to down. Per my reasoning, at the start of a new bar, if MACD at bar[1] is less than the MACD[2] and MACD[2] is greater than MACD[3], indicator should draw above the the
Sanju Chand
Added topic Question on MA Shift
I am trying to flag the condition of MA crssover in my EA. For this the code I have written is min15ma14now= iMA (Symbol(),PERIOD_M15,14,0,MODE_EMA,PRICE_CLOSE,0); min15ma7now=iMA(Symbol(),PERIOD_M15,7,0,MODE_EMA, PRICE_CLOSE, 0);