Anok Imchen
Anok Imchen
Friends

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

Anok Imchen
Added topic Is tick data backtesting possible in MT5?
In MT4, the lowest possible timeframe is 1 Min. And the tick are generated randomly by Mt4 while backtesting . Well, i'm new to MT5, i've full tick data  and therefore i'd like to backtest using using my tick data (not randomly generated BID/Ask
Anok Imchen
Registered at MQL5.community
Anok Imchen
Added topic How to get Lot size in the DEPOSIT currency??
Well,  MarketInfo(Pair,MODE_LOTSIZE) gives the value in base currency . Is there any way to get the value in deposit currency
Anok Imchen
Added topic How to Calculate Swap Per Micro Lot of One Night in MT4?
Well, my code is : MarketInfo(Pair,MODE_TICKVALUE) * 0.01 * 10 * MarketInfo(Pair,19) The problem is: the code gives me double the actual value! So, i have to divide it by 2. Which i don't understand why! eg: if the actual swap is 10, the my code
Anok Imchen
Added topic How to Order 1 unit ( 0.00001 Lots) in MetaTrader4 Expert Advisor Strategy Tester?
Currently the minimum lot supported in metatrader4 Strategy Tester is 0.1 Lots. OrderSend(Symbol(), OP_BUY, 0.1, Ask, Slippage,0,Ask + TakeProfit, "My Coment", 0, 0, Yellow); //WORKS I'd like to back-test my strategy in MT4 Strategy Tester