Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

RickAce

Members
  • Content Count

    6
  • Joined

  • Last visited

Personal Information

  • First Name
    TradersLaboratory.com
  • Last Name
    User
  • City
    Trabuco Canyon
  • Country
    United States
  • Gender
    Male

Trading Information

  • Vendor
    No

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. This article "hit the nail on the head" for me - excellent article. Thank you once again ~ I will read this article weekly.
  2. RickAce

    Volume Splitter

    Hello All, I'm back for another request... would it be possible to add code to the volumesplitter that added a flat trendline on any specific bar (like a zero line). Lets say after 5 minutes running from the open I would like to put a flat trendline at the O,H,L,and/or C on that bar. Any help once again will be greatly appreciated.
  3. RickAce

    Volume Splitter

    Thank you flyingdutchmen... When using a "GAP" chart this is how the indicator looks in the morning (chart started 2 minutes before opening bell): As you can see the indicator does not start out at zero. It seems to always give some sort of previous volume. Any other insights will be greatly appreciated.
  4. RickAce

    Volume Splitter

    Hello BlowFish, I was wondering if you could add to your VolumeSplitter a reset to zero at the morning open (09:30 est) - or allow it to be at adjustable times. inputs: Desc("AddText"), UpColor(darkgreen), DownColor(red), DeltaBar(1), MaxBlock(9999), MinBlock(0), ResetDeltaEachBar(0); variables: MyVol(0), Block(0), color(yellow), intrabarpersist MyCurrentBar(0), intrabarpersist VolumeAtBid(0), intrabarpersist VolumeAtAsk(0), intrabarpersist BAVolRatio(0), intrabarpersist VolTmp(0), intrabarpersist Delta (0), intrabarpersist DeltaH (0), intrabarpersist DeltaL (0), intrabarpersist DeltaO (0); if LastBarOnChart then begin MyVol = Iff(BarType < 2, Ticks, Volume); if CurrentBar > MyCurrentBar then begin VolumeAtBid = 0; VolumeAtAsk = 0; BAVolRatio = 0; VolTmp = 0; MyCurrentBar = CurrentBar; if ResetDeltaEachbar = 1 then Delta =0; DeltaO = Delta; DeltaH = Delta; DeltaL = Delta; end; Block = Myvol - VolTmp; if (Block >= MinBlock) and (Block <= MaxBlock) then if Close <= InsideBid then Delta = Delta - MyVol + VolTmp else if Close >= InsideAsk then Delta = Delta + MyVol - VolTmp ; VolTmp = MyVol ; end; DeltaH = maxlist(DeltaH, Delta); DeltaL = minlist(DeltaL, Delta); if Delta <= 0 then color = DownColor else color = UpColor; plot1(DeltaO, "DO"); Plot2(DeltaH, "DH"); Plot3(DeltaL, "DL"); plot4(Delta, "DC"); Thank you very much in advance - these indicators have increased my success in the markets!
  5. Thank you for the feedback - I was able to find the code by clicking the attached image that appears on the right side of the web page... BTW, I am on a Mac (OSX 10.5.6) and using Firefox or Safari the "Release" button does not appear (I could not find).:crap: Thanks again!
  6. Hello, Is this indicator available for download? I fail to see a link to download.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.