- Search Metals Mine
- 1,032 Results (19 Threads, 1,013 Replies)
-
futurespec replied Dec 24, 2013Data window will only show the buffer values. You could make a separate indi with 8 buffer values and set those by calling (iCustom) the ZZ values. You do not need the values in the data window to create an EA. You can get the values for the EA by ...
Adding Buffers to track the last 7 waves - zigzag indicator
-
futurespec replied Dec 23, 2013Try this. Not formatted so that is up to you. Cannot use 7 buffers as ZZ already uses 3 and max is 8. I assume from your post that you have some coding ability so extract what you need and adapt to your own needs. HTH M.
Adding Buffers to track the last 7 waves - zigzag indicator
-
futurespec replied Dec 14, 2013Try something like ... if((TimeHour(Time[0]) == 2 || TimeHour(Time[0]) == 8 || TimeHour(Time[0]) == 15) && TimeMinute(Time[0]) == 30) && Close[0] > Open[0]) for bull candle HTH M.
How can I code a condition by time?
-
futurespec replied Dec 13, 2013I do apologise .... I should not try to mod code when tired (was not going to do it tonight) Slight coding error meant that the piv lines were deleted at wrong time when in non-auto mode... Corrected. M.
New Pivots Anyone?
-
futurespec replied Dec 13, 2013This may or may not be what you wanted. Let me know. M. Edit: File slightly modded as vLine not showing in non-auto mode (if you just downloaded it please re-download) File in next post
New Pivots Anyone?
-
futurespec replied Dec 13, 2013Happy that it is of some use for you. If/when I get time I will try and take a look but busy over weekend. No promises 'cos as you say it already does most of what you ask. M.
New Pivots Anyone?
-
futurespec replied Dec 13, 2013Max, Not sure what you are asking .... "one more refinement can be added which is automation" ... the levels are drawn automatically?? M.
New Pivots Anyone?
-
futurespec replied Dec 13, 2013Well done Joe. Now with this indi you will be able to make your holiday money too :-) Looks to have some potential but will need to investigate further. HTH. M.
New Pivots Anyone?
-
futurespec replied Dec 13, 2013sorry missed part of code .... double mH[5], mVal; mH[0] = 99999999; for(int i = 0; i < 5; i++) { mVal = 0; for(int z = 0; z < 20; z++) { if(Volume[z] > mVal && Volume[z] < mH[i]) { mVal = Volume[z]; mH[i+1] = mVal; } } } The values that you need ...
How to select last four candles with Highest price or Volume?
-
futurespec replied Dec 13, 2013Hi Daniel, Think something like this should do it (not tested) double mH[5], mVal; mH[0] = 99999999; for(int i = 0; i < 5; i++) { mVal = 0; for(int z = 0; z < mBarsToCheck; z++) { if(Volume[z] > mVal && < mH[i]) { mVal = Volume[z]; mH[i+1] = mVal; } ...
How to select last four candles with Highest price or Volume?
-
futurespec replied Dec 13, 2013Finished trading for day so twiddling my fingers! Added Entry & Stop lines. Is anyone making a fortune from it yet? M.
New Pivots Anyone?
-
futurespec replied Dec 13, 2013I know; I like a good laugh, it helps to keep me sane (or maybe mad) :-) M.
New Pivots Anyone?
-
futurespec replied Dec 13, 2013Ok updated calc for swing again. Think it is better now. Try it and let me know. M. PS. If I tell you not to put your fingers on a hot stove I suppose you would do that too!!? (I see 2 downloads above after I suggested NOT to download). I will leave ...
New Pivots Anyone?
-
futurespec replied Dec 13, 2013Changed the calc for the swing H/L M. EDIT: Still not right in all circumstances. DO NOT download this attachment yet
New Pivots Anyone?
-
futurespec replied Dec 13, 2013I think it is all hocus pocus but hey if it helps! Your starter for 10 .... Not sure what you wanted but try the attached. Move the vLine to the first of the 2 bars that you want to check. If valid then pivots will be drawn (cannot show or hide ...
New Pivots Anyone?
-
futurespec replied Dec 13, 2013Ahhhh .... the light ;-) It does help if you include the file that was initially only in your mind! Will take a look later when I get some time. M.
New Pivots Anyone?
-
futurespec replied Dec 12, 2013Are you only looking to draw the pivots after 2 consec H/L ? What is swing low? ... do you mean the lower low of the 2 bars? M.
New Pivots Anyone?
-
futurespec replied Dec 12, 2013Ok NP. I will not swear, just smile politely :-) Hope it helps, M.
Can someone add filter to this MA alert
-
futurespec replied Dec 12, 2013Sorry but I really cannot spend any more time on it. For me everything appears to work fine (remember if alertbar set to 0 the conditions can change during the bar). I think the timing and therefore the bars on mine are slightly different to yours ...
Can someone add filter to this MA alert