- Search Metals Mine
- crusader1 replied Apr 15, 2014
Great it is now showing all pairs where conditions are met. I am trying to figure out now how you did that... I only see that it is on this part of code if((MinVolume(symbol1) + MinVolume(symbol2) + MinVolume(symbol3) + MinVolume(symbol4) + ...
Candlestick Coding Question
- crusader1 replied Apr 15, 2014
Hmmmmmmm. Why I am soo stup..
Will delete that part. ThanksCandlestick Coding Question
- crusader1 replied Apr 15, 2014
Nope FX. I am looking for one pair which is most bearish or bullish. Therefore I must compare more pairs and pick one from that group. I am looking to your latest code and also testing it but can't find where is code for that "pickup pairs" ...
Candlestick Coding Question
- crusader1 replied Apr 14, 2014
Amazing work FX!! THX. I am slowly adding more pairs and testing. If I will run all five pairs and more than 3 must have same conditions (>=3) How I can get info (in email or in comment) exactly which of these pairs met these conditions? Is there ...
Candlestick Coding Question
- crusader1 replied Apr 14, 2014
OK. I don't know what I am doing wrong but something in my code must be wrong because I am not getting any lines. Idea is that after two or more same conditions (candle formation and min volume) it will plot line. But no lines on 1M testing chart ...
Candlestick Coding Question
- crusader1 replied Apr 14, 2014
Wau I am stupid
Now I understand it very well. Many thanks FX!!!!Candlestick Coding Question
- crusader1 replied Apr 14, 2014
FX if I will know how to code I will not ask on this forum such a simple Q
I know that for you this Q is easy but for me is not
I haven't see this solution with two return in one if statement therefore I am asking... and thax for answer 
Candlestick Coding Question
- crusader1 replied Apr 14, 2014
FX I am not asking how this cpart is working if(iClose(sym,0,2) < iOpen(sym,0,2) && iClose(sym,0,1) > iOpen(sym,0,1)) but how will code know which number (0 or 1) return. Because this is first time when I see two return function in one if statement. ...
Candlestick Coding Question
- crusader1 replied Apr 14, 2014
Another Q what I have is about this part of code: int bull(string sym) { if(iClose(sym,0,2) < iOpen(sym,0,2) && iClose(sym,0,1) > iOpen(sym,0,1)) return(1); return(0); } I can't find out how the code will know which number it must return. Because ...
Candlestick Coding Question
- crusader1 replied Apr 13, 2014
ok. If I am understand your code correctly "int bull" function is giving me numerical value 1 or 0. If overall count is bigger than 3 in "int counted_bars" function it will trigger alert.... Am I right?
Candlestick Coding Question
- crusader1 replied Apr 12, 2014
Hi guys. Nobody can help with this cross pairs checking idea???
THXCandlestick Coding Question
- crusader1 replied Jan 19, 2014
May thanks!! Then only way how I can test such a code is run it on live chart correct?
Please help with one code idea
- crusader1 replied Jan 19, 2014
Thanks Mr. M
I have one technical Q. When I am using Strategy Tester in MT4 and I have code that is comparing conditions on several pairs but I am running always data for one pair because tester is working only with data of one pair. Will this ...Please help with one code idea
- crusader1 replied Jan 18, 2014
if(((mStoredTimeBullish + mCheckingTime) < iTime(NULL, mUTF, 0))) if(iVolume(NULL, mUTF, 2) > 1700) if(iLow(NULL, mUTF, 2) < iLow(NULL, mUTF, (iLowest(NULL, mUTF, MODE_LOW, 6, 3)))) if((iClose(NULL, mUTF, 2) < iOpen(NULL, mUTF, 2)) || ((iClose(NULL, ...
Please help with one code idea
- crusader1 replied Jan 13, 2014
I have read your post but problem is that it is too complicated for me
I am not good coder only beginner. I can read your code but don;t understand how it will work in my code. Because I can't see where to put my exact symbol what I want. For ...iVolume Question
- crusader1 replied Jan 13, 2014
ok. THX for info. I have IBFX broker and I have EURJPYm or GBPJPYm symbols
Then I can't use any easy spelling? thxiVolume Question
- crusader1 replied Dec 13, 2013
THX
I was thinking that it will not be so easy 
How to select last four candles with Highest price or Volume?