Traderbeauty Posted May 19, 2013 Report Posted May 19, 2013 (edited) My brother is using this Tradestation indicator and he swears by it, he trades the forex and generates more than 30% per month using 30 minute bars ( I saw the results ). Since I no longer use TS I was wondering if anybody ever heard about this indicator or has it for ninja. I am attaching a screenshot of the indicator and also the open code ELA so maybe someone can convert it to ninja script and share. http://www.send$pace.c0m/filegroup/LdNbdwuf%2BEY9bQ81SeL5dA Jane Edited May 19, 2013 by Traderbeauty ⭐ chullankallan, shady2500, tryitagainmf and 1 other 4 Quote
tradernate Posted May 19, 2013 Report Posted May 19, 2013 Traderbeauty.....have you checked to see if BM@T has done anything with this code....Nate My brother is using this Tradestation indicator and he swears by it, he trades the forex and generates more than 30% per month using 30 minute bars ( I saw the results ). Since I no longer use TS I was wondering if anybody ever heard about this indicator or has it for ninja. I am attaching a screenshot of the indicator and also the open code ELA so maybe someone can convert it to ninja script and share. http://www.send$pace.c0m/filegroup/LdNbdwuf%2BEY9bQ81SeL5dA Jane tryitagainmf 1 Quote
Traderbeauty Posted May 19, 2013 Author Report Posted May 19, 2013 Hi Nate. No I did not , I never go there , this is the only group I am with and share with. Thanks Jane tradernate 1 Quote
shady2500 Posted May 19, 2013 Report Posted May 19, 2013 can any programer make it for MT4, please? Quote
tarar1818 Posted June 3, 2013 Report Posted June 3, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 Traderbeauty, ivan2007007 and newbie0101 3 Quote
tarar1818 Posted June 4, 2013 Report Posted June 4, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 ⭐ flipper26, newbie0101, longboat and 1 other 4 Quote
Traderbeauty Posted June 4, 2013 Author Report Posted June 4, 2013 I need original tradestation indicator file in .ELD, .ELS or in .ELA format. First I want to run this indicator on TS then I will convert them for MT4 and Ninjatrader. Converted files will be identical and result wise 100% same. There it is- enjoy Jane http://www.sendspace.com/pro/dl/nnotn5 newbie0101 1 Quote
tarar1818 Posted June 4, 2013 Report Posted June 4, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 Quote
Traderbeauty Posted June 4, 2013 Author Report Posted June 4, 2013 I need original tradestation indicator file in .ELD, .ELS or in .ELA format. First I want to run this indicator on TS then I will convert them for MT4 and Ninjatrader. Converted files will be identical and result wise 100% same. There it is- enjoy Jane http://www.sendspace.com/pro/dl/nnotn5 Quote
favoured111 Posted June 4, 2013 Report Posted June 4, 2013 Tarar1818 bros, Please convert it to MT4. Thanks Quote
tarar1818 Posted June 4, 2013 Report Posted June 4, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 bobaloo, tryitagainmf, Traderbeauty and 1 other 4 Quote
longboat Posted June 4, 2013 Report Posted June 4, 2013 Please do the Ninja version for us too. I used to use tradestation and I remember using that one. Thanks! tryitagainmf 1 Quote
⭐ samsammy Posted November 23, 2013 Report Posted November 23, 2013 Hi all... The link for the original Market Forecaster tradestation indicator is dead. Can someone who has this please re-upload. Also, was this ever converted it to NT7? thanks. Quote
Traderbeauty Posted November 24, 2013 Author Report Posted November 24, 2013 i found the ela text:- as far as i know it was not converted to ninja------ [LegacyColorValue = true]; inputs: PriceActionFilter(1), TransColor1or2or3(1), UseZeroLag(False), CCIAvgLen( 20 ), CCISmooth1( 3 ), CCISmooth2( 5 ), StochLength1(5), StochLength2(3), StochLength3(3), UpColor(Green), DwnColor(Red), PlotWidth(2); {****************************************} variables: Price(0), First(0), Second(0), Curve1( 0 ), Curve2( 0 ), Zscore( 0 ), OverBought(80), OverSold(20), Switch(0), KFast(0), KFull(0), DFull(0), LL(O), HH(0), Dira(0), Dira1(0), Dirb(0), Dirb1(0), ZL1(0); {****************************************} Price = SmoothedAverage(Close,PriceActionFilter); First = (Price-Average(Price,CCIAvgLen)); Second = (StdDev(Price,CCIAvgLen)); If Second = 0 then Second = .001; ZScore = (First/Second); Curve1 = Average( ZScore, CCISmooth1 ) ; Curve2 = Average( Curve1, CCISmooth2 ) ; {****************************************} LL = Lowest((High+Low)/2, StochLength1); HH = Highest((High+Low)/2, StochLength1); KFast = 100 * IFF(HH-LL=0,0,(((High+Low)/2) - LL)/(HH- LL)); KFull = Average(KFast, StochLength2); DFull = Average(KFull, StochLength3); ZL1 = Zero_Lag(Average(Kfast, StochLength2), StochLength1); {****************************************} SetPlotWidth(1,PlotWidth); SetPlotWidth(3,PlotWidth); {****************************************} Plot1( 1,"CCISmoothBar"); Plot2(-2,"Spacer"); Plot3(-1,"StocasticBar"); Plot4( 2,"Spacer"); {****************************************} If Curve1>Curve1[1] Then Dira=1; If Curve1<Curve1[1] Then Dira=-1; If TransColor1or2or3 = 2 and Dira>0 Then SetPlotcolor(1,UpColor); If TransColor1or2or3 = 2 and Dira<0 Then Setplotcolor(1,DwnColor); If TransColor1or2or3 = 1 and Dira>0 Then SetPlotcolor[1](1,UpColor); If TransColor1or2or3 = 1 and Dira<0 Then Setplotcolor[1](1,DwnColor); If TransColor1or2or3 = 3 and Dira>0 Then SetPlotcolor(1,UpColor); If TransColor1or2or3 = 3 and Dira<0 Then Setplotcolor(1,DwnColor); If TransColor1or2or3 = 3 and Dira>0 Then SetPlotcolor[1](1,UpColor); If TransColor1or2or3 = 3 and Dira<0 Then Setplotcolor[1](1,DwnColor); {****************************************} If UseZeroLag = False then Begin If KFull>KFull[1] Then Dirb=1; If KFull<KFull[1] Then Dirb=-1; End; If UseZeroLag = True then Begin If ZL1>ZL1[1] Then Dirb=1; If ZL1<ZL1[1] Then Dirb=-1; End; If TransColor1or2or3 = 2 and Dirb>0 Then SetPlotcolor(3,UpColor); If TransColor1or2or3 = 2 and Dirb<0 Then Setplotcolor(3,DwnColor); If TransColor1or2or3 = 1 and Dirb>0 Then SetPlotcolor[1](3,UpColor); If TransColor1or2or3 = 1 and Dirb<0 Then Setplotcolor[1](3,DwnColor); If TransColor1or2or3 = 3 and Dirb>0 Then SetPlotcolor(3,UpColor); If TransColor1or2or3 = 3 and Dirb<0 Then Setplotcolor(3,DwnColor); If TransColor1or2or3 = 3 and Dirb>0 Then SetPlotcolor[1](3,UpColor); If TransColor1or2or3 = 3 and Dirb<0 Then Setplotcolor[1](3,DwnColor); {****************************************} ⭐ samsammy and LisaAkira 2 Quote
Guest gavetso Posted November 24, 2013 Report Posted November 24, 2013 IS SOME BODY CAN SEND US THE easy language source we can code it in Ninja Quote
Traderbeauty Posted November 24, 2013 Author Report Posted November 24, 2013 i just did- look at the previous post. i never used it but my brother swears by it. Quote
Guest gavetso Posted November 24, 2013 Report Posted November 24, 2013 please post screen indi running to get som reference please Quote
Sixer Posted November 24, 2013 Report Posted November 24, 2013 Traderbeauty, in line "64" of the Market forecaster code the function "Zero_Lag" is not verified in TS2000i: See ZL1 = Zero_Lag(Average(Kfast, StochLength2), StochLength1); Can you provide this function too? Sixer Quote
CntHndle Posted November 24, 2013 Report Posted November 24, 2013 Traderbeauty, in line "64" of the Market forecaster code the function "Zero_Lag" is not verified in TS2000i: See ZL1 = Zero_Lag(Average(Kfast, StochLength2), StochLength1); Can you provide this function too? Sixer It looks like the logic follows this pattern: MA1.Set(SMA(KFast,StochLength2)[0]); ZMA.Set(ZLEMA(MA1,StochLength1)[0]); Quote
CntHndle Posted November 24, 2013 Report Posted November 24, 2013 please post screen indi running to get som reference please Agree, please post recent screen prints Quote
CntHndle Posted November 24, 2013 Report Posted November 24, 2013 First pass: made lines not overlap each other and added color based on both aligning: https://anonfiles.com/file/7bc5af60e4f73efe5611829892a698c6 There's also a piece in there that changes the plot color 1 bar ago, so I kept all color changing out. Quote
Traderbeauty Posted November 24, 2013 Author Report Posted November 24, 2013 Hi Sixer- wow- i cannot believe that ts 2000i is still alive and functioning. this ela was extracted to ts 9.1 so i really cannot help you . Quote
tke1 Posted November 24, 2013 Report Posted November 24, 2013 There it is- enjoy Jane http://www.sendspace.com/pro/dl/nnotn5 @Traderbeauty could you re-up this ELD/ELA please - link dead - Thanks Quote
orfila Posted November 24, 2013 Report Posted November 24, 2013 Just use any of the built in averages.. JMA works fine. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.