- Search Metals Mine
- 103 Results
- crusader1 replied Jan 14, 2015
Yep I know that function but I am more thinking about function that is counting tick changes... Or only function in mq4 for tick counting is Volume function? thx
iVolume function not working correctly in mq4?
- crusader1 replied Jan 14, 2015
Hi guys. Is there some function that I can use for see actual ticks on charts? Or maybe some function that will reset tick count? Thanks
iVolume function not working correctly in mq4?
- crusader1 replied Jan 12, 2015
Exactly... and my problem is that with simple coding it is working fine like I have mentioned early. But after using this "easy" loop coding I am getting wrong result. Can be the problem in ++ function? That code is not adding correctly numbers on ...
iVolume function not working correctly in mq4?
- crusader1 replied Jan 12, 2015
Yes I understand it. But I still don;t get it why it is not working with loop coding
Because when candle 1 is closed and have candle 0 is "running" candle 1 has final volume info it will not change in time only thing is that code is waiting after ...iVolume function not working correctly in mq4?
- crusader1 replied Jan 12, 2015
I have also second Q. If this is not working because of that real time tick problem why it is working when I am not using loop coding but only simple coding? Something like this: if((mVolumeSymbol11 < mVolumeSymbol12) && (mVolumeSymbol11 < ...
iVolume function not working correctly in mq4?
- crusader1 replied Jan 12, 2015
and this is common on all TFs charts or only on these lower TF like 1M and 5M charts? When yes. Is there some way how I can get correct information about that Volume? Because my indo is working with main idea which is comparing several pairs ...
iVolume function not working correctly in mq4?
- crusader1 replied Jan 12, 2015
THX. But when I have function on my indi that are checking this variable only when new candle is open (and not on each tick)?? Then it will be not same info for all pairs? mq4 is not checking code on each candle open but only when there is price ...
iVolume function not working correctly in mq4?
- crusader1 replied Dec 3, 2014
Ok guys. I see that there is no specific "function" for do simple summing of variable in loop. I know that ++ and thanks for info. But I was expecting that mq4 will have something implemented for example ... Sum(mPrData[i][0]) and mq4 will know that ...
Operation for summing Array variables
- crusader1 replied Nov 19, 2014
Great rockit!!! I can use loop function also for string and not only for int? Can you explain me what exactly is this for enum symbol {AJ = 0, AU, AC, AN};
How to save price level for several pairs and call it back?
- crusader1 replied Apr 30, 2014
something like this? int start() { mPair1Bear = 0; mPair2Bear = 0; mPair3Bear = 0; mPair4Bear = 0; mPair5Bear = 0; if((iVolume(symbol1, mTF, 1) < (iVolume(symbol1, mTF, iLowest(symbol1, mTF, MODE_VOLUME, 4, 2)))) && (iClose(symbol1, mTF, 1) > ...
Bug Alert? Please help
- crusader1 replied Apr 29, 2014
I am attaching whole code with also info what each line is doing. Again thanks for any help. Because I am not lost. Can;t find why it is not working
Bug Alert? Please help
- crusader1 replied Apr 25, 2014
Hi Ferru I have add this idea to my code but looks to me that I have something wrong there...
please can you check my idea if it is correct? (please note that I have put here only part of my code) I get in ALERT 1 all pairs which met ...How to save currency pairs symbols and use them later?
- crusader1 replied Apr 24, 2014
Many THX and what about reset these string variables? Because with int or double variables when I put exampleTime = 0; after condition loop I know that after next tick calculation code will use fresh new variable and not old. Is there some way how ...
How to save currency pairs symbols and use them later?
- crusader1 replied Apr 22, 2014
Hi guys. I worked on this code and have add next step. My Q is if it is correct. After first "if loops" when code is checking MinVolumeBull or Bear. How to save (best way if there is one) pairs which complete this first if loop step? Later I want ...
Candlestick Coding Question
- crusader1 replied Apr 16, 2014
OK. Looks to me that reset string variable it's not working same way like reset int or double variable. Because int and double variable I can reset always on end of "if" code. But string variable you are reset before "if" code start. Is there some ...
Candlestick Coding Question
- crusader1 replied Apr 16, 2014
FX I am trying
But it is not easy. I know that for you everything what I have asked here looks so easy and basic but for me it isn't and where to learn mql4 when not here?Candlestick Coding Question
- crusader1 replied Apr 15, 2014
ok I have add also that PairString="BULL PAIRS: ";//reset pairstring above this code if((bull(symbol1) + bull(symbol2) + bull(symbol3) + bull(symbol4) + bull(symbol5)) >= 2) and looks that it is working
But I must say that I don't have any idea ...Candlestick Coding Question
- crusader1 replied Apr 15, 2014
Houston we have a problem
I have used your code and try to implement to my code but I am getting very strange alert.... Please can you tell me what I am doing wrong or better what I am missing in my code. Looks to me that it can be something with ...Candlestick Coding Question
- crusader1 replied Apr 15, 2014
Great comment FX!! THX. If I will not reset that string PairString="BEAR PAIRS: ";//reset pairstring code will use old information and will never rewrite that "string memory" with actual pairs?
Candlestick Coding Question