Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.
-
Content Count
512 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Articles
Everything posted by Blu-Ray
-
Just to add something else into the mix , I've coded up the ADXVMA6 into a CCi. Don't know if it will have any benefit, but you can play around with it, to see if you find it useful. I've coded it up for TS and MT4 ( Don't hold your breath on the MT4 version :shocked:) as it's the first one I've got to work. Test it and see.................. Cheers Blu-Ray ADXVMA6_CCI.ELD ADXVMA6_CCi.mq4
-
PYenner I'll send you a PM with the code of the ELD. Hope this helps Blu-Ray
-
Not sure if this is the right place to ask this, but I wanted to ask for your thoughts regarding some action that has been happening for the last month. On the chart attached, since 3rd October, there has been more sellers than buyers, however today has seen a test of the recent high, but it finished as a down candle with more buyers than sellers and much lower volume. I'm unsure what to make of this, my intitial thoughts are that it's a bull trap and we're headed for a move south, but I'm very keen to hear your views on it please. Cheers Blu-Ray
-
Thanks Michaltrade for your kind comments. With the volume issue being a problem for TS forex, I've coded up the CCi with T3 Smoothing as per fxsniper from MT4. If you put the inputs at 10,3 then it acts close to the chimp2_1, ( the main word being close, as we're not going to get exact ). So all I can ask you and any other TS users, is to play about with the settings and see if you find some optimum settings that might give good signals. Cheers Blu-Ray CCIT3_SMOOTHED.ELD
-
Here goes for TS Users: For the 5 min chart use: TLOMI-NonLag ADXVMA6_12bar ADXVMA6_16bar For the 1 min use: ADXVMA6_4bar ADXVMA6_6bar I've bundled the 5 indicators into this one download ELD. All the settings are preset so you just pop them on the charts and you're set. I've also attached the ADXVMA6Test3, with the presets Walter mentioned for EURJPY set as default. As for the Chimp2_1, I'm still working on it as it appears there was an error on the original one I posted on the other thread, also trying to get around the volume issue (no volume with forex TS data). But since this oscillator isn't used for timing I might have to use something close to it but not exact. I'll keep you updated. Cheers Blu-Ray CHIMP'SFOREX.ELD ADXVMA6Test3.ELD
-
There must obviously be a bug in the system....no pun intended, because that red bug says wink.
-
Apologies for the confusion, yes it shows a rotating gear, but when you hover the mouse over that icon, it say thumbs down. No offence intended at all Cheers Blu-Ray
-
Why the thumbs down icon on your post ??
-
hehehe, after spending all day trying to get it coded, I finally managed to get it nearly right, but not correct, then you mentioned this and within 5 seconds it looks an exact match :haha: Thanks Walter, it's saved me a hell of alot of :bang head: as I was trying to get my original to plot correctly. Cheers Blu-Ray
-
hehehehe, thanks very much, your plot's working a treat :bang head:
-
Thanks Michal I'm currently trying to code them but :crap: I've eventually got the 2 ADXVMA's coded up, as of most of yesterday, I was :crap: because it wasn't working. I copied the code exactly from the MT4 downloads but still no joy. Then after more :crap: I eventually realised that ,although they're called 12bar and 16bar they're actually preset at 4 and 40, aaaah, eventually after hours wasted, it was something so simple that I should have checked but thats life.:doh: Anyway so far, I'm on with the TLOMI indicator, but having no joy yet as it's plotting incorrectly, I'm on the case though and will post them all once done. Cheers Blu-Ray
-
Walter I'm probablies getting ahead of the thread here, but could you tell me the settings for the indicators especially the Chimp2_1, as on TS it doesn't work on forex as TS doesn't have volume data, so I'll need to modify it to try to get a near match. Cheers Blu-Ray
-
hehehe, great video. :rofl:
-
PYenner Thank you for clearing those up, it's much appreciated. Cheers Blu-Ray
-
Thanks Walter, it's much appreciated
-
Walter Great thread, you truly are the "Market Wizard". Cheers Blu-Ray
-
Walter If you ever have time and were willing to disclose this info, I would love to hear it. Cheers Blu-Ray
-
Thanks Michal, it's good to be part of this evolution. Cheers Blu-Ray
-
Yeh, It's a great idea, just need a few people to get involved and we could get a good poker game going.
-
Here goes for TS users: Chimp2_1 and Chimp2_2 This WILL NOT work on forex as TS data has no forex volume, also they are plotting near identical to each other, which I think is an error on my behalf, but lets see if this has any mileage in it first before I spend all my time trying to fix the error. Chimp1_6 Mom ChimpMom1 This has an additional input to the MT4 version, so you need to put in the number of decimal places for the relevant symbol you are looking at. Also this plots nearly exactly the same as Chimp1_6Mom. Again I might be wrong here, but I think the inputs on this indicator just move the top and bottom horizontal lines. Hope this helps Blu-Ray CHIMP2_1.ELD CHIMP2_2.ELD CHIMP1_6.ELD CHIMPMOM1.ELD
-
Blimey, I have a weekend off and come back to all these indicators.....Slow down I'm playing catch up, so here's some so far: Chimp1_2 Chimp1_3 Chimp1_4 Cheers Blu-Ray CHIMP1_2.ELD CHIMP1_3.ELD CHIMP1_4.ELD
-
There you go.............. [LegacyColorValue = True] INPUTS: TICKCHG(10), {Change (number of ticks) required to set up a new swing high/low.} PCTCHG(.2), {Percent change in price to set up a new swing high/low} OCCUR(1), PLOTBARS(40), ETALINE(False), ZIGZAG(TRUE); ARRAY: PBAR[50](0), P[50](0); VARS: X(0), PP(1), JA_SLOPE1(0), JLA_CTR(0), JLA_LINE(0), JAIRHBAR(0), { LAST SWING HIGH BAR} JAIRLBAR(0), {LAST SWING LOW BAR} LOWSEEK(FALSE), {LOOKING FOR A LOW OR A HIGH?} W(0), {COUNTER} JLA_IRH(0), {LAST SWING HIGH VALUE} JLA_IRL(99999), {LAST SWING LOW VALUE} JA_SLOPE2(0), JA_SLOPE3(0), JLA_PT1(0), WOLFE(0); {==================MAIN PROGRAM=========================} IF CURRENTBAR = 1 THEN P[50] = C; IF LOWSEEK = FALSE AND P[50] <= H THEN BEGIN P[50] = H; PBAR[50] = 0; END; IF LOWSEEK = TRUE AND P[50] >= L THEN BEGIN P[50] = L; PBAR[50] = 0; END; IF (LOWSEEK = FALSE AND PBAR[50] <> 0) THEN BEGIN IF (TICKCHG = 0 AND L < P[50] * ( 1 - PCTCHG / 100) ) OR (TICKCHG <> 0 AND L < ( P[50] - tickchg * minmove points)) THEN BEGIN IF ZIGZAG = TRUE THEN PLOT4[PBAR[50]](P[50],"SWINGS"); LOWSEEK = TRUE; FOR W = 1 TO 49 BEGIN PBAR[W] = PBAR[W+1]; P[W] = P[W+1]; END; P[50] = L; PBAR[50] = 0; END; END; IF (LOWSEEK = TRUE AND PBAR[50] <> 0) THEN BEGIN IF (TICKCHG = 0 AND H> P[50] * ( 1 + PCTCHG / 100)) OR (TICKCHG <> 0 AND H > (P[50] + tickchg * minmove points )) THEN BEGIN IF ZIGZAG = TRUE THEN PLOT4[PBAR[50]](P[50],"SWINGS"); LOWSEEK = FALSE; FOR W = 1 TO 49 BEGIN PBAR[W] = PBAR[W+1]; P[W] = P[W+1]; END; P[50] = H; PBAR[50] = 0; END; END; IF TIME = LASTCALCTIME AND DATE = LASTCALCDATE AND P[48 - PP] <> 0 THEN BEGIN PP = -1; WOLFE = 0; WHILE WOLFE < OCCUR AND PP < 46 BEGIN PP = PP + 1; VALUE1 = P[47-PP]; VALUE2 = P[48-PP]; VALUE3 = P[49-PP]; VALUE4 = P[50-PP]; CONDITION1 = VALUE2 > VALUE1 AND VALUE4 > VALUE3 AND VALUE4 < VALUE2 AND VALUE3 < VALUE1 AND VALUE4 > VALUE1; CONDITION2 = VALUE2 < VALUE1 AND VALUE4 < VALUE3 AND VALUE4 > VALUE2 AND VALUE3 > VALUE1 AND VALUE4 < VALUE1; IF CONDITION1 OR CONDITION2 THEN WOLFE = WOLFE + 1; END; JA_SLOPE1 = (P[49-PP] - P[47-PP]) / (PBAR[47-PP] - PBAR[49-PP]); JA_SLOPE2 = (P[50-PP] - P[47-PP]) / (PBAR[47-PP] - PBAR[50-PP]); {LINE 1-3} if PBAR[47-PP] >=0 and PBAR[49-PP] >= 0 and PBAR[49-PP]-PLOTBARS >=0 then begin VALUE90 = TL_New(DATE[PBAR[47-PP]],TIME[PBAR[47-PP]],P[47-PP ], DATE[PBAR[49-PP]], TIME[PBAR[49-PP]],P[49-PP]); Value14=TL_SetColor(VALUE90, 5); {VALUE93 = TL_SetExtRight(VALUE90,TRUE);} VALUE94 = TL_SETEND(VALUE90,DATE[PBAR[49-PP]-PLOTBARS],TIME[PBAR[49-PP]-PLOTBARS], TL_GetVALUE(VALUE90,DATE[PBAR[49-PP]-PLOTBARS],TIME[PBAR[49-PP]-PLOTBARS])); end ; {LINE 1-4} if PBAR[47-PP] >= 0 and PBAR[50-PP] >= 0 and PBAR[49-PP]-PLOTBARS >= 0 then begin VALUE91 = TL_NEW(DATE[PBAR[47-PP]],TIME[PBAR[47-PP]],P[47-PP ], DATE[PBAR[50-PP]], TIME[PBAR[50-PP]],P[50-PP]); Value14=TL_SetColor(VALUE91, 16); TL_SETEND(VALUE91,DATE[PBAR[49-PP]-PLOTBARS],TIME[PBAR[49-PP]-PLOTBARS], TL_GETVALUE(VALUE91,DATE[PBAR[49-PP]-PLOTBARS],TIME[PBAR[49-PP]-PLOTBARS])); end ; if PBAR[48-PP] >=0 and PBAR[50-PP]-PLOTBARS >= 0 then begin {ETA LINE} IF ETALINE THEN BEGIN VALUE92 = TL_NEW(DATE[PBAR[48-PP]],TIME[PBAR[48-PP]],P[48-PP ], DATE[PBAR[50-PP]], TIME[PBAR[50-PP]],P[50-PP]); Value14=TL_SetColor(VALUE92, 4); TL_SETEND(VALUE92,DATE[PBAR[50-PP]-PLOTBARS],TIME[PBAR[50-PP]-PLOTBARS], TL_GETVALUE(VALUE92,DATE[PBAR[50-PP]-PLOTBARS],TIME[PBAR[50-PP]-PLOTBARS])); END; end; END; IF DATE = LASTCALCDATE AND TIME = LASTCALCTIME AND ZIGZAG = TRUE THEN BEGIN JA_SLOPE3 = (P[50] - P[49]) / (PBAR[49] - PBAR[50]); FOR JLA_CTR = PBAR[49] DOWNTO PBAR[50] BEGIN PLOT4[JLA_CTR](P[49] + (PBAR[49] - JLA_CTR) * JA_SLOPE3,"Swings"); END; END; FOR W = 1 TO 50 BEGIN PBAR[W] = PBAR[W]+1; END;
-
For TS Users: Chimp1_1 Cheers Blu-Ray CHIMP1_1.ELD
-
For TS Users I've attached the ADXVMA6Sub2_2, I haven't done the Sub2_1 because I think this new one superceded it, is this right PYenner ? Cheers Blu-Ray ADXVMA6SUB2_2.ELD