NexusFi: Find Your Edge


Home Menu

 





FRACTALS...


Discussion in TradeStation

Updated
      Top Posters
    1. looks_one JonnyBoy with 5 posts (14 thanks)
    2. looks_two ecoexplorer with 3 posts (0 thanks)
    3. looks_3 AllSeeker with 3 posts (1 thanks)
    4. looks_4 Big Mike with 2 posts (1 thanks)
      Best Posters
    1. looks_one JonnyBoy with 2.8 thanks per post
    2. looks_two bobwest with 2 thanks per post
    3. looks_3 vmodus with 2 thanks per post
    4. looks_4 AllSeeker with 0.3 thanks per post
    1. trending_up 14,472 views
    2. thumb_up 22 thanks given
    3. group 10 followers
    1. forum 21 posts
    2. attach_file 0 attachments




 
Search this Thread

FRACTALS...

  #1 (permalink)
ecoexplorer
Greensboro
 
Posts: 3 since Apr 2011
Thanks Given: 0
Thanks Received: 0

I have been looking all over the net for a Fractals for Trade Station...post #39 is not good...
I someone could help me...please!!!!!!

thanks!!!!

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
PowerLanguage & EasyLanguage. How to get the platfor …
EasyLanguage Programming
Trade idea based off three indicators.
Traders Hideout
Exit Strategy
NinjaTrader
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
ZombieSqueeze
Platforms and Indicators
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
31 thanks
Spoo-nalysis ES e-mini futures S&P 500
28 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
20 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #2 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,442 since Jun 2009
Thanks Given: 33,215
Thanks Received: 101,602


ecoexplorer View Post
I have been looking all over the net for a Fractals for Trade Station...post #39 is not good...
I someone could help me...please!!!!!!

thanks!!!!

Post #39 of what?

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #3 (permalink)
ecoexplorer
Greensboro
 
Posts: 3 since Apr 2011
Thanks Given: 0
Thanks Received: 0


Sorry!!!

the link below has a zip file that is non functional on Trade station...according to their techs...the file needs to be .ELS or
.ELA or .ELD

please help...

ninjatrader-programming/7974-fractal-pivots-tradestation-ninja-trader.html

thanks!!!!

Mike

Reply With Quote
  #4 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,442 since Jun 2009
Thanks Given: 33,215
Thanks Received: 101,602


ecoexplorer View Post
Sorry!!!

the link below has a zip file that is non functional on Trade station...according to their techs...the file needs to be .ELS or
.ELA or .ELD

please help...

ninjatrader-programming/7974-fractal-pivots-tradestation-ninja-trader.html

thanks!!!!

Mike

OK, I understand now. You tried to use a NinjaTrader indicator in TradeStation. Yes, that is not going to work.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #5 (permalink)
ecoexplorer
Greensboro
 
Posts: 3 since Apr 2011
Thanks Given: 0
Thanks Received: 0

Yes ...Mike...I know its not going to work...but according to the thread it did mention Trade Station...so what Im really trying to do here is find out if anyone would or could help me find a fractal indicator that will work with TS???

please...

Mike

Reply With Quote
  #6 (permalink)
schris87
Lima, Peru
 
Posts: 4 since Nov 2012
Thanks Given: 5
Thanks Received: 1

I found the following code for fractals a few months ago though I never got around to play with it.

Hope it can help you out!!

{Fractal Indicator}
Input:
Swingstrength (2),
SwingLength(30);

Vars:
blBlue(0),
blRed(0),
blGreen(0),
upFrac(0),
dnFrac(0),
stp_now(False),
i1(0),
maxFracsBack(10);

value0 = (h+l)/2;
blBlue = Average (value0,13) [8];
blRed = Average (value0,8) [5];
blGreen = Average (value0,5) [3];
Value1 = Highest (High,SwingStrength);
Value2 = Lowest (Low, SwingStrength);
stp_now = False;
i1=1;

While i1< maxFracsBack
And Swinglow (i1, low, swingstrength, swinglength) <> -1
And stp_now=False begin
Value3=SwingLow (i1, Low, SwingStrength, SwingLength);
If Value3>blRed or value3>Value2
Then i1=i1+1
Else stp_now=True;
end;

If stp_now then dnFrac = Value3
Else dnFrac= -1;
stp_now = false;

i1 = 1;
While i1 < maxFracsBack
And SwingHigh (i1, High, SwingStrength, SwingLength) <> -1
And stp_now = False begin
Value4 = SwingHigh (i1, high, SwingStrength, SwingLength);
If value4<blRed or value4 < Value1
Then i1 = i1+1
Else stp_now = TRUE;
end;

If stp_now
Then upFrac = Value4
Else upFrac = -1;

If upFrac <> 0 and upFrac <> -1 then plot1 (upFrac, "UPFract");
If dnFrac <> 0 and dnFrac <> -1 then plot2 (dnFrac, "DNFract");
// End Easylanguage Code

Reply With Quote
Thanked by:
  #7 (permalink)
 
tracer888's Avatar
 tracer888 
Ashburn, VA
 
Experience: Beginner
Platform: NT8, ThinkorSwim
Broker: TD Ameritrade (currently)
Trading: MES MNQ
Posts: 65 since Feb 2014
Thanks Given: 24
Thanks Received: 65

I know this is an ancient, but this code does work Always stunned the indis that TS doesn't have.


Reply With Quote
  #8 (permalink)
 eisi83 
Salzburg Austria
 
Experience: None
Platform: NinjaTrader
Trading: ES,YM
Posts: 16 since Sep 2017
Thanks Given: 41
Thanks Received: 3

Hello guys,

Is anybody able to make this Fractal Indicator running on NT8?

Or maybe somebody allready have a Fractal-Indi like that one?

thank you in advance

Reply With Quote
  #9 (permalink)
 
JonnyBoy's Avatar
 JonnyBoy 
Montreal, Quebec
 
Experience: Advanced
Platform: NinjaTrader 8
Broker: Kinetick
Trading: ES
Posts: 1,561 since Apr 2012
Thanks Given: 706
Thanks Received: 3,858


eisi83 View Post
Hello guys,

Is anybody able to make this Fractal Indicator running on NT8?

Or maybe somebody allready have a Fractal-Indi like that one?

thank you in advance

Fractals are nothing special. You can use the Swing indicator that comes with NinjaTrader to display them. Bill Williams defined a fractal as a swing high or low with a swing strength of 2.

NinjaTrader also comes with a some Bill Williams indicators already programmed in. Bill Williams in his second book I think, introduced the awesome oscillator to help filter "bad" fractal trades. All the AO is a MACD built from a 5 SMA and a 34 SMA. He introduced the alligator as well...something like that. You'll have to research.

I extensively researched fractals. They may have worked for Bill back in the 80s on currency pairs, but they do not work today. Or to put another way, I didn't transpose any discernible edge from trading fractals. His books are pretty good though.

--------------------------------------------------------
- Trade what you see. Invest in what you believe -
--------------------------------------------------------
Reply With Quote
Thanked by:
  #10 (permalink)
 
bobwest's Avatar
 bobwest 
Western Florida
Site Moderator
 
Experience: Advanced
Platform: Sierra Chart
Trading: ES, YM
Frequency: Several times daily
Duration: Minutes
Posts: 8,168 since Jan 2013
Thanks Given: 57,451
Thanks Received: 26,278



JonnyBoy View Post
Fractals are nothing special. You can use the Swing indicator that comes with NinjaTrader to display them. Bill Williams defined a fractal as a swing high or low with a swing strength of 2.

NinjaTrader also comes with a some Bill Williams indicators already programmed in. Bill Williams in his second book I think, introduced the awesome oscillator to help filter "bad" fractal trades. All the AO is a MACD built from a 5 SMA and a 34 SMA. He introduced the alligator as well...something like that. You'll have to research.

I extensively researched fractals. They may have worked for Bill back in the 80s on currency pairs, but they do not work today. Or to put another way, I didn't transpose any discernible edge from trading fractals. His books are pretty good though.

Thanks. I couldn't remember the name of the Swing indicator, since I'm not on NT any more. There's also the Price Action Swing indicator in the FIO downloads section, with does the same thing on a the basis of a different calculation. I think every platform will probably have something like this. Sierra Chart has one called ZigZag that does the same thing.

The problem with anything of this nature is that it has to wait for a certain number of bars before concluding that a turn has happened. So while it can be useful in automatically drawing short-term support or resistance levels for you, it's just doing what you would do yourself if you eyeballed a chart and said, "Oh, it turned here, I'll draw my line from it." It can't tell you anything about the future, other than whatever you can obtain from any support or resistance line.

You can just put the Swing indicator on your chart and see if you can use it. Don't expect miracles, though.

Bob.

When one door closes, another opens.
-- Cervantes, Don Quixote
Reply With Quote
Thanked by:




Last Updated on April 27, 2021


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts