Software Used to Trade Jack Hershey Methods

Discussion in 'Trading Software' started by Tums, Jun 26, 2007.

  1. NinjaTrader_Ray

    NinjaTrader_Ray ET Sponsor

    NinjaTrader allows you to replay any day you have recorded data for and it will work with all of our supported market data vendors and brokerage technologies.

    More information - http://www.ninjatrader-support.com/HelpGuideV6/Overview14.html
     
    #711     Jul 19, 2008
  2. ehorn

    ehorn

    Hello Ray,

    Some time back, you had mentioned that the ability to fix the y-scale of a panel (i.e. price scale or volume scale) was on the list of future enhancements?

    Can you provide a status update to this enhancement?

    Thanks for any insight
     
    #712     Jul 19, 2008
  3. NinjaTrader_Ray

    NinjaTrader_Ray ET Sponsor

    Sure, enhanced scaling options are part of our NT7 development schedule, beta later this year. However, a user submitted customer indicator that enables you to fix the Y scale of a panel does exist in our NinjaScript File Sharing section of our support forum.
     
    #713     Jul 19, 2008
  4. ehorn

    ehorn

    Thanks very much Ray!
     
    #714     Jul 19, 2008
  5. Munck

    Munck

    #715     Jul 20, 2008
  6. Tums

    Tums

    Version 1.3

    Modified Lateral as needing two closes Outside them to 'kill' the formation (end it).
    http://www.elitetrader.com/vb/showthread.php?s=&postid=2011294&highlight=two+closes#post2011294

    Code:
    [b][color=red]if ( Close[1] > LatHi and Close[2] > LatHi ) or ( Close[1] < LatLo and Close[2] < LatLo ) then[/b][/color]
    begin
    	lateral=false;
    	LatHi=0;
    	LatLo=0;
    end;
    .
     
    #716     Jul 29, 2008
  7. i would love to have some information on the JH volume indicator if possible.

    i would like to try to correlate this indicator with my own stuff i coded and i therefore need to code it (on esignal). It is probably not very hard when you know how the volume gaussians are drawn and bar colors are obtained. Could anyone please share that with me?

    i mean this

    <IMG src="http://i50.photobucket.com/albums/f307/picsdump/ES09-0830_07_20085Min.jpg" width=800>
     
    #717     Jul 31, 2008
  8. Palinuro, thank you for this. I've been struggling with this one for a while & always got stuck with the collection.

    I am curious about one part:
    Code:
    [font=courier]// use only data between start and end times
    if (ToTime(Time[0]) > (sessionBegin) && ToTime(Time[0]) < ( sessionEnd + (2 * period * 100)))[/font]
    
    
    Does this mean you actually collect data two bars past the user specified end time ?
    If so, what was the reasoning for this?

    Just trying to learn. Thanks!
     
    #718     Aug 3, 2008
  9. Tums

    Tums

    To anyone using IB as data feed:

    IB streams its live data without a time stamp.
    Your charting software assumes your computer time as the data arrives.
    i.e. if your computer time is off, so will your chart's bar timing.

    If you refresh your chart, your software requests "Historic" data from IB. This data is time stamped.
    Your charting software will redraw the chart according to the time-stamped data.
    Thus your chart might appear different after a refresh.
     
    #719     Aug 13, 2008
  10. LostTrader,

    sorry not to respond sooner, I've been dealing with physical and family crises and am away from home, so haven't been checking in.

    NT timestamps the end of the bar, so the last bar is the session end time + 1 bar. And since the comparison is 'less than', another bar has to be added to that.

    I have an improved version - breaks volume into deciles, handles a bug in NT, and filters for suspiciously low volume - that I'll post as soon as I get a chance. (I'm also installing everything on a new laptop - and having problems, as you'll see in my next post....)

    -palinuro
     
    #720     Aug 16, 2008