Forum

Draw candle in separate window

Does anybody knows how to draw a candle in a separate custom indicator window ? Any example, link ? I only need to know how to draw a candle graphics. Thank you,tek

Tester artifact

Testing an multicurrency expert. In Settings tab I click Start and wait the test to finish. The Testing progress bar fills up until the end of test when it becomes empty again and the Cancel buton is named back Start. So, at the end of the test, here the graph tab resulted: Here the Settings tab

The problems

# Problem 1 1.1 Test EA, using H1, open prices only, EURUSD chart, period 2009.06.01 - 2010.06.01. Below the MT5 capture result: I am happy the EA is a winner :D. 1.2 I do right cliick on graph , Save As png and I get this graph saved: The EA is not anymore a winner . What is happening ? Checking

Tick generation - Open bar only

I run this test using EURUSD, H1, Open prices only void OnTick () { // current chart bar time datetime aSTime = 0 ; if ( CopyTime ( Symbol (), PERIOD_CURRENT , 0 , 1 ,LTimeArr) == - 1 ) { Print ( "CopyTime " + Symbol ()+ " error: " , GetLastError ()); return ; } aSTime =

Multi-Currency synchronization

Here some tests results and below details: Code used: // chart symbol is GBPUSD // ETimeFrame is PERIOD_H1 // LCrtTime is a datetime void OnTick () { CopyTime ( Symbol (),ETimeFrame, 0 , 1 ,LCkSigTime); LCrtTime = LCkSigTime[ 0 ]; datetime aTimeTmp[ 1 ]; CopyTime ( "GBPUSD"

Custom Indicator and multi pairs problem

I have a custom indicator which simply returns/shows HLOC on the chart attached. Now, I am trying to create another custom indicator which uses the first one. This second indi opens handles using first indicator for different symbols than the current chart. I simply want to calculate in the second

Build 294 problem ?

When testing an ea, the last build 294 says: 2010.07.21 12:13:54 Core 1 CLeadOsc::Create(): ArraySetAsSeries error: 0 2010.07.21 12:13:54 Core 1 Tester stopped because OnInit failed The code used which makes this stop in tester is this: if(!ArraySetAsSeries(iTmpArr,true)) {

Optimizer open prices only - is it working ?

Is the optimizer working with open prices only and multiple symbols ? If I try optimize one single parameter using open prices only it appears not working. If I change every tick then it appears it is moving on. I use multiple symbols. With open price only it only says in journal, connected, common

Tester results tab disappear

When I test the MACD samples in the tester I can see and use the Results tab. When I test my own EA the Results tab disappear. It is not visible. What's wrong ? All other tabs appear, I can see the graf, and Journal but not the Results. I only trade EURUSD but my EA checks other pairs like EURJPY

indicator problem/bug ?

I use Ichimoku this is a test code void OnTick() { double aTmp[1]; CopyBuffer(iH,TENKANSEN_LINE,0,1,aTmp); double aT = aTmp[0]; CopyBuffer(iH,KIJUNSEN_LINE,0,1,aTmp); double aK = aTmp[0]; CopyBuffer(iH,SENKOUSPANA_LINE,0,1,aTmp); double aA = aTmp[0];