NexusFi: Find Your Edge


Home Menu

 





Cory's VolumeStop for Sierra Chart?


Discussion in Sierra Chart

Updated
      Top Posters
    1. looks_one cory with 4 posts (6 thanks)
    2. looks_two greenroomhoo with 3 posts (1 thanks)
    3. looks_3 omni72 with 3 posts (0 thanks)
    4. looks_4 ejtrader with 2 posts (7 thanks)
      Best Posters
    1. looks_one ejtrader with 3.5 thanks per post
    2. looks_two cory with 1.5 thanks per post
    3. looks_3 onnb with 1 thanks per post
    4. looks_4 greenroomhoo with 0.3 thanks per post
    1. trending_up 6,424 views
    2. thumb_up 15 thanks given
    3. group 8 followers
    1. forum 15 posts
    2. attach_file 6 attachments




 
Search this Thread

Cory's VolumeStop for Sierra Chart?

  #11 (permalink)
 
greenroomhoo's Avatar
 greenroomhoo 
annapolis USA
 
Experience: Intermediate
Platform: Ninja, MC, Sierra, Amibroker
Broker: PFG (too bad), IB, Fidelity, AMP
Trading: ES, NQ, Equities, Forex, Etc.
Posts: 276 since Jun 2011
Thanks Given: 107
Thanks Received: 235

Cory - my ninja is weak.

what does the "||" operator represent?
is "Math.Abs()" just regular old Absolute Value?

think i understand the rest of it. Ill probably do it in easylanguage while i am at it...unless someone else already has?

incidentally cory - are you really in Fairfax? I grew up there.

Visit my NexusFi Trade Journal Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
MC PL editor upgrade
MultiCharts
Trade idea based off three indicators.
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
  #12 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,443 since Jun 2009
Thanks Given: 33,217
Thanks Received: 101,603


greenroomhoo View Post
Cory - my ninja is weak.

what does the "||" operator represent?
is "Math.Abs()" just regular old Absolute Value?

think i understand the rest of it. Ill probably do it in easylanguage while i am at it...unless someone else already has?

incidentally cory - are you really in Fairfax? I grew up there.

|| = or
Math.Abs is an absolute value

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #13 (permalink)
 ejtrader 
Portland, OR
 
Experience: Intermediate
Platform: Sierra Chart
Trading: ES
Posts: 269 since Jan 2011
Thanks Given: 327
Thanks Received: 180


if time permits - Would provide an ACSIL based solution for this.

Thanks

Reply With Quote
  #14 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090


greenroomhoo View Post
Cory - my ninja is weak.

what does the "||" operator represent?
is "Math.Abs()" just regular old Absolute Value?

think i understand the rest of it. Ill probably do it in easylanguage while i am at it...unless someone else already has?

incidentally cory - are you really in Fairfax? I grew up there.

yes, I am in FF. && = and [0]= current bar, [1] = 1 bar back, [2] = 2 bar back.

Reply With Quote
  #15 (permalink)
 ejtrader 
Portland, OR
 
Experience: Intermediate
Platform: Sierra Chart
Trading: ES
Posts: 269 since Jan 2011
Thanks Given: 327
Thanks Received: 180

Attached is the initial ACSIL Version for the Cory's Volume indicator..

Conditions are pulled from #10 -

Comments Welcome

PS: Please note that this is just a base release and Once the functionality aspect is confirmed - Can provide the configurable inputs ( color/offset values etc) or any other changes needed.

Attached Thumbnails
Click image for larger version

Name:	CoryVolume.png
Views:	400
Size:	3.5 KB
ID:	102704  
Attached Files
Elite Membership required to download: CoryVolume.cpp
Elite Membership required to download: CoryVolume.dll
Reply With Quote
  #16 (permalink)
 jproux 
Pretoria, South Africa
 
Experience: Beginner
Platform: Sierra Chart
Broker: CTS
Trading: BackTesting This
Posts: 47 since Sep 2016
Thanks Given: 41
Thanks Received: 48

Hi, I would like to know if anyone is having success with this indicator? The methodology makes sense but when I backtest it, the results are quite poor. I entered the criteria in SC spreadsheet study and used the criteria as stipulated by Cory:

// draw triangle up
// 3 bars -volume slope up but price slope down with the last white candle
if (Volume[0] >= Volume[1] && Volume[1] >= Volume[2] &&
( High[0] - Low[0] < High[1] - Low[1] || Math.Abs(Open[0] - Close[0])< Math.Abs(Open[1] - Close[1]))
&&
Low[0] <= Low[1] &&
Low[1] <= Low[2] &&
Close[0] >= Open[0] )

// draw triangle down
// 3 bars -volume slope up and price slope up with the last black candle
if (Volume[0] >= Volume[1] && Volume[1] >= Volume[2] &&
( High[0] - Low[0]< High[1] - Low[1] ||
Math.Abs(Open[0] - Close[0])< Math.Abs(Open[1] - Close[1]))
&&
High[0] >= High[1] &&
High[1] >= High[2] &&
Close[0] < Open[0] )

I tested on a 3 min chart and overlaid the 9 & 5MA of the 10000 tick chart to get medium term direction. I tested this on the NQ. So when the 10k Tick 5 MA is above 9 MA, I'll only take longs when a signal is fired and when 5 MA is below 9 MA I'll only take shorts when signals are fired. I only enter during RTH.

I did not bother with the s/r lines.

I attach my chart, spreadsheet and screenshot of the backtest. I can't say that this is a strategy that shows results? Unless I'm way off and missing something big. Any comments, recommendations or advice would be welcomed.

PS - This is no criticism against Cory or his work. He is obviously highly valued and respected in this community. I'm merely sharing data and wish to know whether this is a strategy I wish to add to my methodologies.

Attached Thumbnails
Click image for larger version

Name:	Corys Vol Div.PNG
Views:	274
Size:	34.3 KB
ID:	249392  
Attached Files
Elite Membership required to download: Corys Vol Div.txt
Elite Membership required to download: NQ_Cory_Vol_Div_Test.cht
Reply With Quote




Last Updated on May 7, 2018


© 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