NexusFi: Find Your Edge


Home Menu

 





Anyone Have an EasyLanguage Support Resistance Fractal Levels Indicator


Discussion in EasyLanguage Programming

Updated
      Top Posters
    1. looks_one olobay with 3 posts (0 thanks)
    2. looks_two leescharf with 2 posts (0 thanks)
    3. looks_3 Quick Summary with 1 posts (0 thanks)
    4. looks_4 caballer with 1 posts (0 thanks)
    1. trending_up 3,261 views
    2. thumb_up 0 thanks given
    3. group 5 followers
    1. forum 8 posts
    2. attach_file 1 attachments




 
Search this Thread

Anyone Have an EasyLanguage Support Resistance Fractal Levels Indicator

  #1 (permalink)
caballer
New York City, NY/USA
 
Posts: 3 since Jan 2013
Thanks Given: 0
Thanks Received: 1

Hello,

I'm looking for an EasyLanguage Support Resistance Fractal Levels Indicator like this one:

wwwDOTtradingviewDOTcom/script/RQnLfaNE-Swing-high-low-support-resistance-by-Patternsmart-com/

It is based on the Fractals indicator, but it draws lines instead of one dot for each fractal.

There is an old metatrader indicator that does the same thing, called Kay Support Resistance, or Barry Support Resistance.

Can anyone help?

Thanks

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Exit Strategy
NinjaTrader
NexusFi Journal Challenge - May 2024
Feedback and Announcements
Better Renko Gaps
The Elite Circle
Trade idea based off three indicators.
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
48 thanks
Just another trading journal: PA, Wyckoff & Trends
34 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
24 thanks
GFIs1 1 DAX trade per day journal
22 thanks
  #3 (permalink)
 olobay 
Montreal
 
Experience: Intermediate
Platform: MultiCharts
Broker: DeepDiscountTrading.com
Trading: CL
Posts: 364 since Jul 2011



caballer View Post
Hello,

I'm looking for an EasyLanguage Support Resistance Fractal Levels Indicator like this one:

wwwDOTtradingviewDOTcom/script/RQnLfaNE-Swing-high-low-support-resistance-by-Patternsmart-com/

It is based on the Fractals indicator, but it draws lines instead of one dot for each fractal.

There is an old metatrader indicator that does the same thing, called Kay Support Resistance, or Barry Support Resistance.

Can anyone help?

Thanks

I think the Chaos Fractals indicator comes with Multicharts.

Attached Files
Elite Membership required to download: Chaos.pla
Reply With Quote
  #4 (permalink)
 leescharf 
New York, NY
 
Experience: Beginner
Platform: TradeStation
Trading: Futures
Posts: 17 since Aug 2020
Thanks Given: 4
Thanks Received: 8


olobay View Post
I think the Chaos Fractals indicator comes with Multicharts.

Hi,

I have been looking for the same thing for Tradestation... plotting of the support/resistance on the bars/chart.

Anyone have intel?

TIA!

-Lee

Reply With Quote
  #5 (permalink)
 olobay 
Montreal
 
Experience: Intermediate
Platform: MultiCharts
Broker: DeepDiscountTrading.com
Trading: CL
Posts: 364 since Jul 2011


leescharf View Post
Hi,

I have been looking for the same thing for Tradestation... plotting of the support/resistance on the bars/chart.

Anyone have intel?

TIA!

-Lee

Compile the indicator and the two functions below in TradeStation.

Chaos Fractals:

 
Code
[LegacyColorValue = true]; 

Inputs:		Strength(2);

value1=swinghigh(1,h,Strength,80);
value2=swinglow(1,l,Strength,80);

if value1>-1 then plot1(value1,"BuyFractal");
if value2>-1 then plot2(value2,"SellFractal");

SwingHigh:

 
Code
inputs: 
	Instance( numericsimple ), 
	PriceValue( numericseries ), 
	Strength( numericsimple ), 
	Len( numericsimple ) ;

variables: 
	var0( 0 ), 
	var1( 0 ) ;

Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, 1, var0, 
 var1 ) ;

SwingHigh = var0 ;

SwingLow:

 
Code
inputs: 
	Instance( numericsimple ), 
	PriceValue( numericseries ), 
	Strength( numericsimple ), 
	Len( numericsimple ) ;

variables: 
	var0( 0 ), 
	var1( 0 ) ;

Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, -1, var0, 
 var1 ) ;

SwingLow = var0 ;

Reply With Quote
  #6 (permalink)
 leescharf 
New York, NY
 
Experience: Beginner
Platform: TradeStation
Trading: Futures
Posts: 17 since Aug 2020
Thanks Given: 4
Thanks Received: 8


olobay View Post
Compile the indicator and the two functions below in TradeStation.

Chaos Fractals:

 
Code
[LegacyColorValue = true]; 

Inputs:		Strength(2);

value1=swinghigh(1,h,Strength,80);
value2=swinglow(1,l,Strength,80);

if value1>-1 then plot1(value1,"BuyFractal");
if value2>-1 then plot2(value2,"SellFractal");

SwingHigh:

 
Code
inputs: 
	Instance( numericsimple ), 
	PriceValue( numericseries ), 
	Strength( numericsimple ), 
	Len( numericsimple ) ;

variables: 
	var0( 0 ), 
	var1( 0 ) ;

Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, 1, var0, 
 var1 ) ;

SwingHigh = var0 ;

SwingLow:

 
Code
inputs: 
	Instance( numericsimple ), 
	PriceValue( numericseries ), 
	Strength( numericsimple ), 
	Len( numericsimple ) ;

variables: 
	var0( 0 ), 
	var1( 0 ) ;

Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, -1, var0, 
 var1 ) ;

SwingLow = var0 ;

Hi @olobay!

Thanks so much for this... unfortunately, TS gives me a lot of errors on this code. I'm not super proficient, so possible I'm missing something obvious... do I need to adjust this for EL formatting-wise? Also "numericsimple" is not recognized.

Thanks for any additional insight.

Cheers,
Lee

Reply With Quote
  #7 (permalink)
 olobay 
Montreal
 
Experience: Intermediate
Platform: MultiCharts
Broker: DeepDiscountTrading.com
Trading: CL
Posts: 364 since Jul 2011


leescharf View Post
Hi @olobay!

Thanks so much for this... unfortunately, TS gives me a lot of errors on this code. I'm not super proficient, so possible I'm missing something obvious... do I need to adjust this for EL formatting-wise? Also "numericsimple" is not recognized.

Thanks for any additional insight.

Cheers,
Lee

I don't have TS so I don't know. You try Google and check this too:


Reply With Quote
  #8 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,435 since Apr 2013
Thanks Given: 482
Thanks Received: 1,628

Lee,

it sounds like you might be putting all three codes in indicators. The latter two are functions and already exist within Tradestation. So would only need the first code.

Apart from that you can take a look at the built-in ShowMe Fractals that might do what you have in mind, too.

Regards,

ABCTG



leescharf View Post
Hi @olobay!

Thanks so much for this... unfortunately, TS gives me a lot of errors on this code. I'm not super proficient, so possible I'm missing something obvious... do I need to adjust this for EL formatting-wise? Also "numericsimple" is not recognized.

Thanks for any additional insight.

Cheers,
Lee


Follow me on Twitter Reply With Quote
  #9 (permalink)
thoughtful
Klamath Falls OR
 
Posts: 60 since Apr 2020
Thanks Given: 21
Thanks Received: 80


caballer View Post
Hello,

I'm looking for an EasyLanguage Support Resistance Fractal Levels Indicator like this one:

wwwDOTtradingviewDOTcom/script/RQnLfaNE-Swing-high-low-support-resistance-by-Patternsmart-com/

It is based on the Fractals indicator, but it draws lines instead of one dot for each fractal.

There is an old metatrader indicator that does the same thing, called Kay Support Resistance, or Barry Support Resistance.

Can anyone help?

Thanks


I looked at the link, aha, that's basically just automatic levels. At that link it's not really using fractals though, just swings of a large strength. I actually coded my own fractal swings, so they're real/actual fractal swings, and then for levels you'd use the 1st fractal swings. I coded the automatic levels too (in MC easylanguage) -- it draws a horizontal trendline. BTW, by "1st fractal" I don't mean the minimum swings, but the larger swings based on those minimum swings.

I was actually thinking of packaging up my code one of these days, when I find time, and maybe even selling it for cheap. Since it's in MC easylanguage, I won't be able to sell to the huge NinjaTrader market though. IDK if anyone would even be interested. You know how things are -- even if you think something is awesome and you use it alot, others may not.

Reply With Quote




Last Updated on October 30, 2020


© 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