Traderbeauty Posted May 19, 2013 Report Share 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 tryitagainmf, newbie0101, ⭐ chullankallan and 1 other 4 Quote Link to comment Share on other sites More sharing options...
tradernate Posted May 19, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
Traderbeauty Posted May 19, 2013 Author Report Share 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 Link to comment Share on other sites More sharing options...
shady2500 Posted May 19, 2013 Report Share Posted May 19, 2013 can any programer make it for MT4, please? Quote Link to comment Share on other sites More sharing options...
tarar1818 Posted June 3, 2013 Report Share Posted June 3, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 newbie0101, Traderbeauty and ivan2007007 3 Quote Link to comment Share on other sites More sharing options...
tarar1818 Posted June 4, 2013 Report Share Posted June 4, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 longboat, newbie0101, tryitagainmf and 1 other 4 Quote Link to comment Share on other sites More sharing options...
Traderbeauty Posted June 4, 2013 Author Report Share 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 Link to comment Share on other sites More sharing options...
tarar1818 Posted June 4, 2013 Report Share Posted June 4, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 Quote Link to comment Share on other sites More sharing options...
Traderbeauty Posted June 4, 2013 Author Report Share 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 Link to comment Share on other sites More sharing options...
leospartain2 Posted June 4, 2013 Report Share Posted June 4, 2013 pls convert to MT4 Thanks Quote Link to comment Share on other sites More sharing options...
favoured111 Posted June 4, 2013 Report Share Posted June 4, 2013 Tarar1818 bros, Please convert it to MT4. Thanks Quote Link to comment Share on other sites More sharing options...
tarar1818 Posted June 4, 2013 Report Share Posted June 4, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 bobaloo, newbie0101, Traderbeauty and 1 other 4 Quote Link to comment Share on other sites More sharing options...
longboat Posted June 4, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
⭐ samsammy Posted November 23, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
Traderbeauty Posted November 24, 2013 Author Report Share 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); {****************************************} LisaAkira and ⭐ samsammy 2 Quote Link to comment Share on other sites More sharing options...
Guest gavetso Posted November 24, 2013 Report Share Posted November 24, 2013 IS SOME BODY CAN SEND US THE easy language source we can code it in Ninja Quote Link to comment Share on other sites More sharing options...
Traderbeauty Posted November 24, 2013 Author Report Share Posted November 24, 2013 i just did- look at the previous post. i never used it but my brother swears by it. Quote Link to comment Share on other sites More sharing options...
Guest gavetso Posted November 24, 2013 Report Share Posted November 24, 2013 please post screen indi running to get som reference please Quote Link to comment Share on other sites More sharing options...
Sixer Posted November 24, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
CntHndle Posted November 24, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
CntHndle Posted November 24, 2013 Report Share Posted November 24, 2013 please post screen indi running to get som reference please Agree, please post recent screen prints Quote Link to comment Share on other sites More sharing options...
CntHndle Posted November 24, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
Traderbeauty Posted November 24, 2013 Author Report Share 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 Link to comment Share on other sites More sharing options...
tke1 Posted November 24, 2013 Report Share 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 Link to comment Share on other sites More sharing options...
orfila Posted November 24, 2013 Report Share Posted November 24, 2013 Just use any of the built in averages.. JMA works fine. Quote Link to comment Share on other sites More sharing options...
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.