NexusFi: Find Your Edge


Home Menu

 





Sierra Chart Worksheet System For Trading/Alert Discussions


Discussion in Sierra Chart

Updated
      Top Posters
    1. looks_one Sawtooth with 73 posts (125 thanks)
    2. looks_two luckcity with 43 posts (2 thanks)
    3. looks_3 RT912 with 12 posts (0 thanks)
    4. looks_4 bxman with 10 posts (0 thanks)
      Best Posters
    1. looks_one Sawtooth with 1.7 thanks per post
    2. looks_two aBuzz54 with 1 thanks per post
    3. looks_3 tradermark2009 with 0.5 thanks per post
    4. looks_4 MWG86 with 0.3 thanks per post
    1. trending_up 65,717 views
    2. thumb_up 139 thanks given
    3. group 44 followers
    1. forum 182 posts
    2. attach_file 9 attachments




 
Search this Thread

Sierra Chart Worksheet System For Trading/Alert Discussions

  #41 (permalink)
luckcity
sydney australia
 
Posts: 44 since Jul 2012
Thanks Given: 26
Thanks Received: 2

Tom,
I'm sure I asked this at some time, but not finding my notes, so must ask again.
Would like to store the low of an entry candle as a exit stop when going long, how is that done?
It was a persistent formula, I'm sure, maybe one of those double Ifs...

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Trade idea based off three indicators.
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
ZombieSqueeze
Platforms and Indicators
Could it be that currency futures are way easier to trade?
Currencies
How to apply profiles
Traders Hideout
 
  #42 (permalink)
 Sawtooth 
Prescott AZ USA
 
Experience: Advanced
Platform: SierraChart
Broker: Stage5, FCM:Dorman, Data:Denali, Routing:Teton
Trading: YM ES NQ
Posts: 474 since Nov 2009
Thanks Given: 219
Thanks Received: 603

It could be as simple as this, in Z3:
=IF(K3,D3,Z4)

Started this thread Reply With Quote
Thanked by:
  #43 (permalink)
luckcity
sydney australia
 
Posts: 44 since Jul 2012
Thanks Given: 26
Thanks Received: 2


Tom,

I like how the session start was used as a reset to start looking for highest volumes of the day in your suggested:
=IF(OR(INT(A3)>INT(A4),AND(FRACTIME(A4)<$J$75,FRACTIME(A3)>=$J$75)),0,IF(F3>O4,F3,O4))

How would one reset after 10 candles, e.g. what is the value of the highest volume in the last 10 candles?

Reply With Quote
  #44 (permalink)
luckcity
sydney australia
 
Posts: 44 since Jul 2012
Thanks Given: 26
Thanks Received: 2

OK seeing =MAX(F3,F4,F5,F6,F7,F8,F9,F10,F11,F12) is working
nevermind...

Reply With Quote
  #45 (permalink)
 Sawtooth 
Prescott AZ USA
 
Experience: Advanced
Platform: SierraChart
Broker: Stage5, FCM:Dorman, Data:Denali, Routing:Teton
Trading: YM ES NQ
Posts: 474 since Nov 2009
Thanks Given: 219
Thanks Received: 603


luckcity View Post
OK seeing =MAX(F3,F4,F5,F6,F7,F8,F9,F10,F11,F12) is working
nevermind...

You can simplify it like this:
=MAX(F3:F12)

Started this thread Reply With Quote
Thanked by:
  #46 (permalink)
luckcity
sydney australia
 
Posts: 44 since Jul 2012
Thanks Given: 26
Thanks Received: 2

I have a stop order successfully being set at the high of day, after certain conditions are met, using J17 and J71.
Is there a way to impose another condition, say a favorable macd, AC3>=AE3, once price reaches the stop order?
Currently, the initial stop setting conditions are in K column.

Reply With Quote
  #47 (permalink)
bradhouser
Northern California where the girls are warm
 
Posts: 122 since Nov 2010
Thanks Given: 15
Thanks Received: 72


luckcity View Post
I have a stop order successfully being set at the high of day, after certain conditions are met, using J17 and J71.
Is there a way to impose another condition, say a favorable macd, AC3>=AE3, once price reaches the stop order?
Currently, the initial stop setting conditions are in K column.

Unless I am missing something, if your order to buy in K3 is something like =Z3, then use the AND function to combine the existing formula and the new condition: =AND(Z3,(AC3>=AZ3).

(replace Z3 with whatever is in K3, without the = sign.)

Reply With Quote
Thanked by:
  #48 (permalink)
luckcity
sydney australia
 
Posts: 44 since Jul 2012
Thanks Given: 26
Thanks Received: 2

Thanks for taking a look.

OK to clarify, here is the requirement:
A stop order is successfully being set at the high of day, after certain conditions are met, using J17 and J71.
These conditions are set in K3, and basically look for a dip in prices before setting the stop order.
OK so the stop order is visible, having met those conditions.

A 2nd set of conditions to enable that order's execution, when macd is favorable, is required when price meets the stop order.
These cannot be added to K3, as those conditions were met already.
Its looking that this isn't going to be easy to do.

Instead of setting a stop order, as a workaround, tried to set a market order once the macd goes favorable AND the price reaches the high of the day (which is stored, so isn't dynamic) by using in K3, E3 (last price >= the stored high) but the "greater than" has a delayed effect where it can trigger late because macd was in transition (and price has gotten greater, but execution really should trigger when price meets the high).
Using just equals (last price = the stored high) will only trigger when the candle's last price = high, even it seems when "Signal only on bar close, K and M" is set to No.
Just to eliminate tick issues, using symbol YM, which has J21 (tick size) of 1 (trying to simplify by not referring to J21 until this gets debugged)

Reply With Quote
  #49 (permalink)
bradhouser
Northern California where the girls are warm
 
Posts: 122 since Nov 2010
Thanks Given: 15
Thanks Received: 72

Are you using the Spreadsheet System/Alert? If so you should use the Spreadsheet System for trading. The difference is that in the trading spreadsheet, when K3 = 1, a buy entry signal is sent. L3 is Buy Exit, M3 is Sell Entry and N3 is Sell Exit. Using M3 or N3, you can trigger an exit if all the conditions are met. The Limit Order is not necessary.

Reply With Quote
  #50 (permalink)
luckcity
sydney australia
 
Posts: 44 since Jul 2012
Thanks Given: 26
Thanks Received: 2



bradhouser View Post
Are you using the Spreadsheet System/Alert? If so you should use the Spreadsheet System for trading. The difference is that in the trading spreadsheet, when K3 = 1, a buy entry signal is sent. L3 is Buy Exit, M3 is Sell Entry and N3 is Sell Exit. Using M3 or N3, you can trigger an exit if all the conditions are met. The Limit Order is not necessary.

Using Spreadsheet System for trading. Preferring the stop order. mostly just to see the targeted price before execution. Could use a limit order, but with a stop, execution is guaranteed around the required price.

Reply With Quote




Last Updated on January 3, 2022


© 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