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,434 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?

  #1 (permalink)
 
omni72's Avatar
 omni72 
Tulsa, OK
 
Posts: 348 since Jan 2012
Thanks Given: 582
Thanks Received: 624

There is a great thread over in Ninja land dedicated to an indicator created by nexusfi.com (formerly BMT)'er @cory:



There was a lot of positive feedback and the indicator remains one of the Most Downloaded of All Time.

Within the thread, @omaha786 asked:


omaha786 View Post
Cory, is the indicator available for Sierra Chart?

Good question, omaha Did this ever get ported over to Sierra? I've taken a glance at the Ninja code, but given my painfully modest ACSIL programming skills I don't think I'm not the best candidate to translate NT code into ACSIL

Luck is what happens when preparation meets opportunity. ~ Seneca
Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
How to apply profiles
Traders Hideout
ZombieSqueeze
Platforms and Indicators
Quant vue
Trading Reviews and Vendors
NexusFi Journal Challenge - May 2024
Feedback and Announcements
 
  #3 (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


yes you can translate v3 into SC no problem. v7 needs more advance SC coder.

Reply With Quote
  #4 (permalink)
 onnb 
Vancouver, Canada
Onn
 
Experience: Intermediate
Platform: NinjaTrader, SierraCharts, thinkorswim
Trading: Stocks
Posts: 10 since Sep 2011
Thanks Given: 0
Thanks Received: 3


cory View Post
yes you can translate v3 into SC no problem. v7 needs more advance SC coder.

What is the v7? Can you bring it over to this thread?

Onn

Reply With Quote
Thanked by:
  #5 (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


onnb View Post
What is the v7? Can you bring it over to this thread?

Onn


Reply With Quote
Thanked by:
  #6 (permalink)
 
omni72's Avatar
 omni72 
Tulsa, OK
 
Posts: 348 since Jan 2012
Thanks Given: 582
Thanks Received: 624

Alright, after some renewed interest in Cory's VolumeStop maybe we'll see this thread gain some traction

Thanks again @cory for sharing your work

Luck is what happens when preparation meets opportunity. ~ Seneca
Started this thread Reply With Quote
  #7 (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

this should be relatively easy to do with a spreadsheet alert study in SC.

Visit my NexusFi Trade Journal Reply With Quote
  #8 (permalink)
 
omni72's Avatar
 omni72 
Tulsa, OK
 
Posts: 348 since Jan 2012
Thanks Given: 582
Thanks Received: 624


greenroomhoo View Post
this should be relatively easy to do with a spreadsheet alert study in SC.

Assuming 'relatively' is based on proficiency with SC spreadsheets, then @tomgilb is probably shaking his head yes to this being easy

Tom, if you're interested in tackling this teensey little project, I've got a shiny brand new 'THANKS!' waiting for your post

Obviously, the exact same offer is available for you @greenroomhoo

Luck is what happens when preparation meets opportunity. ~ Seneca
Started this thread Reply With Quote
  #9 (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

if you would explain the conditions that result in the triangles and diamonds in Cory's indicator...ill take a stab pulling together an alert study or spreadsheet.

Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #10 (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


// 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 diamond up
// 3 bars - vol slope down and price slope down with the last white candle
if (Volume[0] < Volume[1] && Volume[1] <= Volume[2] &&
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] )

// draw diamond down
// 3 bars - vol slope down but price slope up with the last black candle
if (Volume[0] < Volume[1] && Volume[1] <= Volume[2] &&
High[0] > High[1] && High[1] >= High[2] &&
Close[0] < Open[0] )

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