- Search Metals Mine
-
Zeuzere replied Dec 23, 2006Mark53... Maybe we have the same problem... this morning i was writing a EA base on my new indicator... But i found out that the iRSI(Well maybe other too) function does not give me the same value as the custom indicator with the same algorithm... ...
EAs and historical data
-
Zeuzere replied Dec 23, 2006It must be tested in the 1,5,15,or hourly chart... The RSI data should give at any moment the 4H candle value. But thats not the case... Mistery...
Please help me..... Ps.: i noticed that when we reach the end of the chart then we see the good ...EA Problem
-
Zeuzere replied Dec 23, 2006Your right, its not suppose to be double but datetime as iTime return datetime... I did work to hard last night :-) But this is not changing anything... Why? They both give the same value anyway(Good or wrong)! they are build the same way... I will ...
EA Problem
-
Zeuzere replied Dec 23, 2006I put only this in the EA: double rsi = iRSI(NULL,PERIOD_H4,RsiPeriod,PRICE_CLOSE,0); Comment("rsi: ",rsi); And only this in one custom indicator double rsi = iRSI(NULL,PERIOD_H4,RsiPeriod,PRICE_CLOSE,0); Buffer[0]= rsi; IndicatorShortName( rsi); ...
EA Problem
-
Zeuzere replied Dec 23, 2006Yep, its sad that the dde option is only for output only...
Dummy forex tick feed wanted
-
EA Problem
Started Dec 23, 2006|Platform Tech|8 replies
I have a created a custum indicator base on RSI, it give higher RSI value from higher time ...
-
Zeuzere replied Dec 23, 2006As i know there is no feature to random data feed... But what i would do... Is to create a txt/csv file(MT4 Format) with random data,and import the data into the MetaTrader via the history center. I would use a second MT4 application to do this to ...
Dummy forex tick feed wanted
-
Zeuzere replied Dec 23, 2006What is the error message? In the terminal window under expert tab... If you use the Print("Error opening Buy order : ",GetLastError()); it should output the error message. If not post your code. I look at it...
Code for Buy Limits?
-
Zeuzere replied Dec 22, 2006Step 1.3 — Now below double ExtMapBuffer1[]; Add extern int MyPeriod = 21; extern is use to interact with the indicator, when you install the CI you have a pop-up, then in the input tab you see your extern variable... Now replace the ...
How to draw a box in MT4?
-
Zeuzere replied Dec 22, 2006Step 1.2 — Ok. so resume Init <- the program will execute this function only once(When indicator is loaded) deInit <- the program will execute this function only once(When indicator is unloaded) Start <- the program will execute this function ...
How to draw a box in MT4?
-
Zeuzere replied Dec 22, 2006Post you code... You should not have any issue.... Online or offline the data is the same... If your online and you missed some data(Because the computer was close) then the application will update the data, but after that, is the same. Maybe its ...
EAs and historical data
-
Zeuzere replied Dec 22, 2006By the way notify me when you read and understand. So i can continue... i will wait before going on and on and on and on....

How to draw a box in MT4?
-
Zeuzere replied Dec 22, 2006Step 1.1 — 1. #property copyright "" 2. #property link "" 1 and 2 are there to only identify your script (Not important for coding)3. #property indicator_chart_window Each windows as a value, the windows with chart is 0 then each indicator at ...
How to draw a box in MT4?
-
Zeuzere replied Dec 22, 2006Step by Step ... Step 1 — I can help you to build your first indicator and show the basic... Of course you will have to do your lesson by looking at the cours(pdf) to deeply understand everything... Step 1- Create a blank, Custom Indicator ...
How to draw a box in MT4?
-
Zeuzere replied Dec 22, 2006also i write this: for(int x=0 ; x < limit ; x++) but in fact you would like to start from the end up to the most recent candle so: for(int x=limit ; x>=0 ; x--) Why? If your indicator is adding from past value, how could you add if you have not ...
How to draw a box in MT4?
-
Zeuzere replied Dec 22, 2006First Close[] is define by the MQL Framework. You can only use it to retreive info... But you can use your array. ex.: double MyArray[]; or double MyLilttleBuz[]; Question? Why would you want to change the Candle Close Value? You must instead give ...
How to draw a box in MT4?
-
Zeuzere replied Dec 22, 2006Buffer(Array) of value start at 0, ex.:so to get the high of the fifth candle you would write High[4], so shift is the candle position-1 starting from right to left. To get all candle quantity you use 'Bars'-1 So if you want to create a RSI ...
How to draw a box in MT4?
-
Zeuzere replied Dec 21, 2006"expand on the stock" ... Hard to understand for me ;-) (i'm French)..Suppose you mean to explain? if so... how do you add or substract 30pip from 1.2500 ? 30 * Point == 30 * 0.0001 == 0.0030 so 1.2500+0.0030 It give the good value to multiple. 4 ...
How to draw a box in MT4?
-
Zeuzere replied Dec 21, 2006No problemo!
I know that, is just that i want to be clear. Keep me up to date with you EA, I'm curious
Parabolic SAR Expert Advisor
-
Zeuzere replied Dec 21, 2006Sorry, no, no, no, i did not says that... I just said, if you use SAR and want to retreive info from it.... use Buffer[1] instead of Buffer[0]... The way you use SAR is up to you ( I did not talk about EA, just how to use it to have a fix value)... ...
Parabolic SAR Expert Advisor