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
Content Type
Profiles
Forums
Calendar
Articles
Everything posted by RickAce
-
This article "hit the nail on the head" for me - excellent article. Thank you once again ~ I will read this article weekly.
-
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.
-
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.
-
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!
-
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!
- 3 replies
-
- bollinger bands
- channel
-
(and 3 more)
Tagged with:
-
Hello, Is this indicator available for download? I fail to see a link to download.
- 3 replies
-
- bollinger bands
- channel
-
(and 3 more)
Tagged with: