NexusFi: Find Your Edge


Home Menu

 





median line


Discussion in Platforms and Indicators

Updated
    1. trending_up 6,167 views
    2. thumb_up 2 thanks given
    3. group 3 followers
    1. forum 13 posts
    2. attach_file 3 attachments




 
Search this Thread

median line

  #1 (permalink)
sr114
Kolkata+India
 
Posts: 27 since Aug 2012
Thanks Given: 10
Thanks Received: 1

Hello forum

i am interested in overlaying pitchfork on my eod charts. the nearest afl i get is Andrews Pitchfork or Schiff line. but the chart generated in not that clear to understand.

so please can any one help me in finding such a tool?

thanking in advance sr

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
MC PL editor upgrade
MultiCharts
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
How to apply profiles
Traders Hideout
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #2 (permalink)
 Letmein 
London, UK
 
Posts: 36 since Jul 2012

A Pitchfork drawing tool can be found on the toolbar.

Reply With Quote
  #3 (permalink)
sr114
Kolkata+India
 
Posts: 27 since Aug 2012
Thanks Given: 10
Thanks Received: 1



Letmein View Post
A Pitchfork drawing tool can be found on the toolbar.

yes i have seen it, but to draw individually for every scrip i have in my db is a pain in my $ss. thats why i am looking for a afl which clearly depicts median line in my chart

any way thanks for the reply

sr114

Reply With Quote
  #4 (permalink)
 Letmein 
London, UK
 
Posts: 36 since Jul 2012

Then use this one for example

Attached Files
Elite Membership required to download: Andrews Pitchfork V3.4.afl
Reply With Quote
  #5 (permalink)
sr114
Kolkata+India
 
Posts: 27 since Aug 2012
Thanks Given: 10
Thanks Received: 1


Letmein View Post
Then use this one for example


thanx a lot

this is being depicted efficiently

thanks a lot again

sr

Reply With Quote
  #6 (permalink)
sr114
Kolkata+India
 
Posts: 27 since Aug 2012
Thanks Given: 10
Thanks Received: 1

Hello

another query:

i generally use range bars in my trading intraday and my market is India (NSE-NIFTY). its price is between INR 5000+
now i use 500R for it.

Nifty Range bars- 500R


the code i use is

Quoting 
_SECTION_BEGIN( "Price" );
SetChartOptions( 0, chartShowArrows | chartShowDates );
SetChartBkGradientFill( ParamColor( "Inner panel upper", colorBlack ), ParamColor( "Inner panel lower", colorBlack ) );
_N( Title = EncodeColor( colorWhite ) + StrFormat( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ) );

TimeFrameMode( 4 ); // turn on range bars where N is expressed in tick size
TimeFrameSet( 20 ); // range in tick size

SetBarFillColor( IIf( C > O, ParamColor( "Candle UP Color", colorGreen ), IIf( C <= O, ParamColor( "Candle Down Color", colorRed ), colorLightGrey ) ) );
Plot( C, "", IIf( C > O, ParamColor( "Wick UP Color", colorDarkGreen ), IIf( C <= O, ParamColor( "Wick Down Color", colorDarkRed ), colorLightGrey ) ), 64, 0, 0, 0, 0 );


a1=EMA(EMA(C,21),21); //DEMA of Close
a2=EMA(a1,21);
Difference=a1-a2;
a=a1+difference; //zerolag
Plot( A, "", colorWhite, styleLine, styleThick );


b1=EMA(EMA(C,8),8); //DEMA of Close
b2=EMA(b1,8);
Difference=b1-b2;
b=b1+difference; //zerolag
Plot( B, "", colorAqua, styleLine, styleThick );

_SECTION_END();

i am right in my analysis. i do not use and tick size in the symbol information - i keep it blank.

this is in case of bank nifty - Price - 10000+)



am i in right direction? waiting values response from forum
sr

Reply With Quote
  #7 (permalink)
sr114
Kolkata+India
 
Posts: 27 since Aug 2012
Thanks Given: 10
Thanks Received: 1

Hello forum

was exploring the yearly high and low. got the exploration data in perfect but the question arises- i want the date when this hi or lo occurred?

getting the bar no from BarSinceHigh and BarSinceLow.
how to get the date of the event happened or occurred?

regards and thanx

sr

Reply With Quote
  #8 (permalink)
 TheTrend 
Paris, France
 
Experience: Advanced
Platform: Amibroker
Trading: Futures, Stocks
Posts: 95 since Jun 2011
Thanks Given: 118
Thanks Received: 105

If you succed to code an exploration, you should have the ticker on the 1st column and the dates on the 2nd column.

Reply With Quote
  #9 (permalink)
sr114
Kolkata+India
 
Posts: 27 since Aug 2012
Thanks Given: 10
Thanks Received: 1


TheTrend View Post
If you succed to code an exploration, you should have the ticker on the 1st column and the dates on the 2nd column.

actually the question is - can i get the date in exploration when the HHV or LLV occurred? for that what i have to do in the code portion?
it is not the question whether the ticker and date is in 1st and 2nd col or not

regards
sr

Reply With Quote
  #10 (permalink)
 TheTrend 
Paris, France
 
Experience: Advanced
Platform: Amibroker
Trading: Futures, Stocks
Posts: 95 since Jun 2011
Thanks Given: 118
Thanks Received: 105



sr114 View Post
actually the question is - can i get the date in exploration when the HHV or LLV occurred? for that what i have to do in the code portion?
it is not the question whether the ticker and date is in 1st and 2nd col or not

regards
sr


Apply this code to an exploration for a ticker.

In the 2nd Col you'll see the date of the yearly high or low IF the 3rd or 4th column is different from 0.


 
Code
NewHigh = H > Ref(HHV(H,250),-1);
NewLow = L < Ref(LLV(L,250),-1);

Filter =1;
AddColumn(IIf(NewHigh,H,0) ,"Yearly High ?");
AddColumn(IIf(NewLow,L,0),"Yearly Low ?");
Hope that helps.

Attached Thumbnails
Click image for larger version

Name:	High - Low.png
Views:	134
Size:	18.2 KB
ID:	88482  
Reply With Quote




Last Updated on September 11, 2012


© 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