![]() |
This website will be down for maintenance from Friday May 24th at 6PM MDT until Saturday May 25th at 11AM MDT. We apologize for the inconvenience. If you need assistance during this time, please email sales@ninjatrader.com
|
|||||||
| NinjaScript File Sharing Discussion Discussion for shared NinjaScript files. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#16 | |
|
Senior Member
Join Date: Jun 2011
Location: Ireland
Posts: 184
Thanks: 32
Thanked 20 times in 19 posts
|
Quote:
http://www.ninjatrader.com/support/f...catid=4&id=343 |
|
|
|
|
|
|
#17 |
|
Junior Member
Join Date: Apr 2012
Posts: 8
Thanks: 0
Thanked 0 times in 0 posts
|
Thanks for the response.
But I prefer this version of pivot rather than the link you just post. This session pivots allow me to see Money Zone, Floor and Camarilla at the same chart. Here is my question to the developer: If I trade ES, what session template should I use to make sure the pivot line is correctly plot? Thanks! |
|
|
|
|
|
#18 | |
|
Junior Member
Join Date: Jun 2012
Posts: 21
Thanks: 4
Thanked 2 times in 2 posts
|
Quote:
I have been reading Franklin O. Ochoa's "Secrets of a Pivot Boss" and I'm trying to plot the pivot range histogram ((TC - BC) / PP) x 100 below the price panel - but I haven't succeeded so far :-( I have tried to set 'DrawOnPricePanel = false' after I have added the series I want to plot (in Initialize()) - but nothing happens. I also tried to change 'Overlay' to 'false' inside the script - no effect. Furthermore I would like to introduce a second indicator panel, where I outline the two-day pivot range relationship (i.e. higher value=bullish (i.e. BC(0)>TC(1)); overlapping higher value=moderate bullish; lower value=bearish; overlapping lower value=moderately bearish; unchanged value=sideways/breakout; outside value=sideways, and inside value=breakout) - but I haven't quite figured out how to diplay this information in the panel. So the solution needs to be able to show and update 2 indicator panels below the main price panel. Hope someone can help me with this newbie indicator panel problem. Best regards, Saxo_ |
|
|
|
|
|
|
#19 | |
|
Senior Member
|
Quote:
|
|
|
|
|
|
|
#20 |
|
Junior Member
Join Date: Jun 2012
Posts: 21
Thanks: 4
Thanked 2 times in 2 posts
|
Thanks Koganam - any help will be appreciated
![]() I have (hopefully) attached a modified version of qfweiwei's 'SessionPivots', that only contains Floor Pivots - which is what I focus on. The 'Two-Day Pivot Relationship' I have tried to put into the HIST-serie, and the 'Pivot Range Histogram' I have put into the RELS-serie. Any ideas on how to make the RELS-serie appear more meaningful in the indicator panel (i.e. currently it only holds a number from 1 to 7) would be appreciated. Would it be possible to write a text per day e.g. 'Bullish' or 'Moderately Bullish' in the indicator panel? Longterm I dream about being able to display weekly and monthly pivot points at the same time (qfweiwei's code supports showing weekly or monthly on the daily chart which is great - but not at the same time and not at the same time as the daily pivots) together with the daily pivot points and be able to filter them, so that I per time frame can decide to only focus on S1, PP and R2 when market is in an uptrend - and only focus on S2, PP and R1 when the market is a downtrend. This will allow me to check for confluence, where pivot points from different time frames identify the same levels. For me - at the current stage - this seems as a rather big and advanced development - so any hints would be appreciated. I have just recently discovered NinjaTrader and I'm truely impressed with all the possibilities it offers - but I have a long way before I will master it. Best regards, Saxo |
|
|
|
|
|
#21 |
|
Junior Member
Join Date: Jun 2012
Posts: 21
Thanks: 4
Thanked 2 times in 2 posts
|
Hi,
I'm still stuck trying to plot the HIST- and the RELS-series in 2 separate panels beneath the price chart. Besides the panels not being drawn, I don't see how I can control what is drawn in which panel just by flipping the 'DrawOnPricePanel'-property (when doing the initialize and just before the draw takes place). Perhaps the solution would be to introduce HIST and RELS as seperate indicators that would then have to be fed with TC-, PP- and BC-series from the main indicator script (i.e. 'MySessionPivots')? But how to pass on series from one script to another (and make sure that it is only these 'sub' indicators that link to the main indicator) seems even more complicated. Any help will be appreciated. Best regards, Saxo |
|
|
|
|
|
#22 | |
|
Senior Member
|
Quote:
|
|
|
|
|
|
|
#23 |
|
Junior Member
Join Date: Jun 2012
Posts: 21
Thanks: 4
Thanked 2 times in 2 posts
|
Ok - thanks for the explanation, koganam. I want RELS and HIST in separate indicator panels inside MySessionPivots-indicator - but I don't know how to make these indicator panels appear.
Last edited by Saxo_; 07-20-2012 at 09:58 AM.
|
|
|
|
|
|
#24 |
|
Senior Member
|
I must not have been clear. The only supported way to get an indicator's Plot into a panel is to load the indicator into that panel.
|
|
|
|
|
|
#25 | |
|
Junior Member
Join Date: Jun 2012
Posts: 21
Thanks: 4
Thanked 2 times in 2 posts
|
Quote:
Furthermore, I'm trying to have the last e.g. R1-value appear in indicator column in a Market Analyzer grid. I can make a value appear - but it is not R1. If change the value to be display to R2 I get the same value - and is seems to the the latest price. What I'm I doing wrong here? Finally, I just noticed this morning that the pivot points for the last 2 days (Friday and Thursday) in the chart are display identical (although the price chart looks okay) - no matter what instrument I load. This was not the case yesterday evening when the markets were still open. Can anybody verify/dismiss this? |
|
|
|
|
|
|
#26 | |
|
Senior Member
|
Quote:
If you have indicatorA that exposes a Plot called HIST, then if you want to reference HIST from indicatorB, the syntax will be: Code:
private double varOfInterest; Code:
varOfInterest = indicatorA([]parameter_list).HIST[ndx]; Intellisense will help here, because as soon as you put that period behind the text "indicatorA", you will get a dropdown list of the entities that can follow. ref: http://www.ninjatrader.com/support/h..._on_indica.htm
Last edited by koganam; 07-22-2012 at 09:29 PM.
Reason: Corrected calling syntax to show parameter list required
|
|
|
|
|
|
The following user says thank you to koganam for this post: |
|
|
|
#27 |
|
Junior Member
Join Date: Jun 2012
Posts: 21
Thanks: 4
Thanked 2 times in 2 posts
|
When I write:
myhist = MySessionPivots.HIST[0]; I get upon compile: 'NinjaTrader.Indicator.Indicator.MySessionPivots(b ool, NinjaTrader.Data.PivotRange, NinjaTrader.Data.HLCCalculationMode, double, double, double)' is a 'method', which is not valid in the given context When I write: myhist = MySessionPivots(false,PivotRange.Daily, HLCCalculationMode.DailyBars ,0,0,0).HIST[0]; Print(myhist); - I always get '0' for HIST[0] (although I can see that it is calculated in the MySessionPivots indicator) and I don't like that I have to hard code the arguments to MySessionPivots, because I would want the MyPrivotRangeHistogram to use whatever parameters I use for MySessionPivots. Furthermore it seems that I repeat the calculation (by calling the method) instead of reusing HIST-series already build up in MySessionPivots. I must be doing something wrong ...
Last edited by Saxo_; 07-22-2012 at 01:01 PM.
|
|
|
|
|
|
#28 | |
|
Senior Member
|
Quote:
You will have to jump through quite a few hoops if you want to read the parameters of one indicator and pass those to another one. Perhaps the simplest way is to use static variables to hold the values you want to reference, and then have all the indicators read and use those values. Caution: Always, always be leery of using static variables. They can really bite you in the rear end.
Last edited by koganam; 07-22-2012 at 09:41 PM.
|
|
|
|
|
|
|
#29 |
|
Senior Member
Join Date: Jun 2008
Posts: 644
Thanks: 0
Thanked 0 times in 0 posts
|
I guess I have the default indicator being there seems to be more then one version Here.
A Simple Refresh of the chart changes all the values. How can you trust an indicator when that happens. Happens on Time charts or Volume charts. I have a custom Session from 6:30 AM to 6:30 AM PT. Had high hopes for this indicator, not so sure now ? |
|
|
|
|
|
#30 |
|
Senior Member
Join Date: Jun 2008
Posts: 644
Thanks: 0
Thanked 0 times in 0 posts
|
Switched to "CalcfromIntradaydate" and that seems to have stabilized it
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Seperating daily/weekly/monthly time-frame | aediaz1 | Indicator Development | 3 | 02-02-2011 08:10 AM |
| Yearly, Monthly, Weekly OHL... | Sleeping Troll | Indicator Development | 3 | 03-15-2010 12:35 PM |
| Monthly/Weekly Profit Graph Bug | Anagoge | Strategy Analyzer | 2 | 10-29-2008 07:48 AM |
| Can't veiw my daily, weekly and monthly charts....HELP... | amaruenterprise | Charting | 6 | 05-28-2008 11:22 PM |
| Weekly and Monthly Pivot points | bmaltz | Indicator Development | 9 | 06-09-2007 06:24 AM |