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,340 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

  #91 (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


Quoting 
I'd like to have a global/'master' spreadsheet as the sole point of order management

You cannot reference a spreadsheet sheet in another chartbook.
You cannot reference a spreadsheet sheet in a differently named spreadsheet in the same chartbook.
You can only reference sheets in the same-named spreadsheet in the same chartbook.

The way to do what you want is to have all your charts in the same chartbook, and add a sheet that is not associated with a chart to be the master sheet.

To add a sheet that is not associated with a chart:
- Go to Spreadsheet >> Add Sheet
- Give it a unique name. Keep it short. Don't accept the default name of a Sheet#.
This sheet will be empty where you can create a master sheet that can reference any other sheet in the same-named spreadsheet, and vice versa.

Then follow what I said in the post you quoted.

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
ZombieSqueeze
Platforms and Indicators
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Diary of a simple price action trader
26 thanks
Just another trading journal: PA, Wyckoff & Trends
24 thanks
Tao te Trade: way of the WLD
21 thanks
My NQ Trading Journal
16 thanks
HumbleTraders next chapter
9 thanks
  #92 (permalink)
 ClutchAce 
Cookeville, TN
 
Experience: Advanced
Platform: Sierra Chart, IB, Python
Trading: NQ, DAX, TOPIX
Frequency: Daily
Duration: Hours
Posts: 71 since Oct 2011
Thanks Given: 18
Thanks Received: 21


tomgilb View Post
Then follow what I said in the post you quoted.

Thanks for the notes; only issue is that the number of Chart windows would be in the hundreds, hence my pondering of having several Chartbooks, each within a separate instance of SC, to distribute the load.

I'll just keep going the programmatic route on this.

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



tomgilb View Post
You'd need a separate one for each MFE step, or find a way to reset it after each step.

Though I'd give this a go for just one step.

Noticing Sierra Chart docs saying the resetting bit at the end is done manually?
Is this a troubleshooting suggestion, or what?

Still working on this before throwing in the towel...question about the reset formula, can one of the "J"'s be used, or will that not work... presently trying in a long exit:
$J$5>0
as your page's "H5", thinking first it will be false, then true, which will enable locking the "H3" state once it goes true, then false again once trade ends, resetting.

Also a bit confusing is, in the SC doc, using in the H4 spot
"K3>0"
and your page having
"H4>1"

is it meant to be greater than 0 or 1?
I haven't downloaded the spreadsheet they offer as an example,yet.

Reply With Quote
  #94 (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

Resetting can be done automatically, but how to do it can get convoluted quickly.
At the very least, you'll be doing lots of trial and error.
It's not something that I can give a quick answer to because there are so many caveats.

The K3 in SC's example corresponds to the H3 in my example. This is the returned reference formula that locks.
The E3 in SC's example corresponds to the H4 in my example. This is the trigger formula that initiates the lock.
The H3 in SC's example corresponds to the H5 in my example. This is the reset formula. This is the tricky one because it must transition twice for each cycle.

In SC's example, their H3 must be FALSE before the lock, go TRUE to reset, and go FALSE again for the next cycle.
In my example, my H5 must be TRUE before the lock, go FALSE to reset, and go TRUE again for the next cycle.

Started this thread Reply With Quote
  #95 (permalink)
RT912
Sydney New South Wales / Australia
 
Posts: 19 since Jul 2019
Thanks Given: 5
Thanks Received: 7

Hi,

I would like to auto trade hours of 22:00 to 02:00 (10pm to 2am).

I have tried using
=AND(J8 = 0, OR(OR(FRACTIME(J41) < TIMEVALUE("22:00:00"), FRACTIME(J41) > TIMEVALUE("02:00:00")), AND(FRACTIME(J41) > TIMEVALUE("02:00:00"), FRACTIME(J41) < TIMEVALUE("22:00:00"))))
to allow trading between 10 pm to 2am and exclude trades between 2am and 10pm, however it does not appear to work.

I suspect crossing over midnight (i.e. a new day ) may add complexity.

Any help with a formula to allow trading between 10 pm and 2am, and exclude trades between 2am and 10pm would be appreciated.

Thanks in advance,

Reply With Quote
  #96 (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


Quoting 
I would like to auto trade hours of 22:00 to 02:00 (10pm to 2am).

Try this:
=AND(J8=0,AND(FRACTIME(J41)>TIMEVALUE("02:00:00"),FRACTIME(J41)<TIMEVALUE("22:00:00")))

Started this thread Reply With Quote
  #97 (permalink)
RT912
Sydney New South Wales / Australia
 
Posts: 19 since Jul 2019
Thanks Given: 5
Thanks Received: 7

Thanks Tom,

I'll give it a go

To Flatten and cancel (J29) would

=or(J41-INT(J41)>TIMEVALUE("01:59:50"))

be the correct formula?

Reply With Quote
  #98 (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

Including J8=0 in your J28 disable formula allows you to exit after the latest time in the formula, while disallowing entries after the latest time. Therefore, you'll want the J29 flatten time to be later than the latest time in J28.

So if you want to flatten at 01:59:50, the latest time in J28 should be something like 01:59:00 instead of 02:00:00.
(But then you have to ask yourself if you want to take an entry 50 seconds before you flatten.)

Try this in J29:
=FRACTIME(J41)>TIMEVALUE("01:59:50")

BTW, you can use FRACTIME(J41) instead of J41-INT(J41), if you want. They both do the same thing.

Started this thread Reply With Quote
Thanked by:
  #99 (permalink)
RT912
Sydney New South Wales / Australia
 
Posts: 19 since Jul 2019
Thanks Given: 5
Thanks Received: 7

Hi Tom,
Thanks for your previous help.
I would like to build upon the disabling (J28) to add loss and profit bounds.
If we assume I
- want to consider open daily P/l (j10) and closed daily (J45)
- Q3 formula is =(($j$45)<=-4)
- R3 formula is =(($j$45)>=12)…. i.e. I risk 4 to make 12

Then I have tried to expand upon your formula as below

=OR(AND(J8=0,AND(FRACTIME(J41)>TIMEVALUE("02:00:00"),FRACTIME(J41)<TIMEVALUE("21:00:00"))),AND(Q3=1,J8=0,AND(FRACTIME(J41)>TIMEVALUE("02:00:00"),FRACTIME(J41)<TIMEVALUE("21:00:00"),AND(R3=1,J8=0,AND(FRACTIME(J41)>TIMEVALUE("02:00:00"),FRACTIME(J41)<TIMEVALUE("21:00:00"))))

But this is incorrect.....

Can you suggest a new formula, or alternatively an easier method?

Thanks in advance (again!)

-

Reply With Quote
  #100 (permalink)
RT912
Sydney New South Wales / Australia
 
Posts: 19 since Jul 2019
Thanks Given: 5
Thanks Received: 7


sorry, Q3 should read =(($j$10+$j$45)<=-4) and similar for R3

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