Login Page - Create Account

Support Board


Date/Time: Thu, 26 Dec 2024 14:23:54 +0000



[Locked] - Alerts

View Count: 1704

[2024-08-11 23:07:39]
coachted - Posts: 335
I know there is a bid imbalance and an ask imbalance study but us there a way to highlght when only trade occurs on the bid and not the ask or vice versa....so on 8/2 around 8:05 the bid was hit opn mulitple levels and the ask was not traded...Id like to know if they can be highlights and carried forward until they are intersected
Date Time Of Last Edit: 2024-08-11 23:08:03
imageScreenshot 2024-08-11 190351.png / V - Attached On 2024-08-11 23:07:59 UTC - Size: 72.2 KB - 46 views
[2024-08-12 15:12:47]
coachted - Posts: 335
is there a way to have my key levels dynamically saved and updated in a csv file???? i am looking to do something like saving the csv file to the web and then share those levels every 5 minutes or so
[2024-08-12 18:53:57]
John - SC Support - Posts: 36850
I know there is a bid imbalance and an ask imbalance study but us there a way to highlght when only trade occurs on the bid and not the ask or vice versa....so on 8/2 around 8:05 the bid was hit opn mulitple levels and the ask was not traded...Id like to know if they can be highlights and carried forward until they are intersected

The Bid and Ask traded data is only available through the Alerts using the syntax noted at the following link:
Study/Chart Alerts And Scanning: Special Functions

But there is not a way with the Alerts syntax to be able to loop, so there is not a good way to know if you have multiple levels, apart from hard-coding everything, which would have to cover the longest bar you would come across. The Alert Syntax does not have enough characters to be able to do this, but the general idea looks like the following (starting at the Low of the bar and looking to see if the Asks are zeros for 3 bars in a row for the first two price levels):
=OR(AND(AVAP(L, 0) = 0, AVAP(L + TICKSIZE, 0) = 0, AVAP(L + TICKSIZE * 2, 0) = 0), AND(AVAP(L + TICKSIZE, 0) = 0, AVAP(L + TICKSIZE * 2, 0) = 0, AVAP(L + TICKSIZE * 3, 0) = 0))

Given this, the only real way to get what you want is to create a custom Study. Refer to the following:
ACSIL Programming Concepts: Accessing Volume at Price Data Per Bar

https://www.sierrachart.com/index.php?page=doc/SierraChartStudyAndSystemProgrammers.php

is there a way to have my key levels dynamically saved and updated in a csv file???? i am looking to do something like saving the csv file to the web and then share those levels every 5 minutes or so

There is the "Write Bar and Study Data to File", but this would give you all the bar data and any other studies on the chart. Refer to the following:
Write Bar and Study Data To File

We also have a study that allows you to share levels, but you have to update the levels on our website. Refer to the following:
Trading Levels

And there is also the ability to share a chartbook and use a localized version of the Trading Levels study (or another study if you are already doing this). Refer to the following:
Realtime Chartbook Sharing (this documentation is being worked on)

Trading Levels - Local Data

But here again, it sounds like for what exactly you want, you would have to create a custom study. Refer to the following:
sc.WriteFile()
For the most reliable, advanced, and zero cost futures order routing, use the Teton service:
Sierra Chart Teton Futures Order Routing
[2024-08-14 03:10:25]
coachted - Posts: 335
another quick question is there a way to color code the cummulative last size on the dom...ie blue for trades on offer and red for trades on the bid??? also is there a PB column for the dom or a study that can be placed on a chart for the pb, i know there is on a fp chart ..
[2024-08-14 13:56:34]
John - SC Support - Posts: 36850
another quick question is there a way to color code the cummulative last size on the dom...ie blue for trades on offer and red for trades on the bid???

The colors for the Cumulative Last Size are controlled through the Graphics Settings starting at the following and going down the next 7 items:
Customizing Fonts, Colors, Line Styles, and Widths for Chart Trading, Chart DOM, and Trade DOM: Chart DOM Cumulative Last Size Text Bid Trade

The Numbers Bars is the only way to view the actual pullback data. There are also a couple of subgraphs in the Numbers Bars Calculated Values for "High Pullback Ask Volume and Bid Volume Difference (High Pullback Ask/Bid Vol Diff)" and "Low Pullback Ask Volume and Bid Volume Difference (Low Pullback Ask/Bid Vol Diff)".
For the most reliable, advanced, and zero cost futures order routing, use the Teton service:
Sierra Chart Teton Futures Order Routing
[2024-10-28 13:02:08]
coachted - Posts: 335
Godd morning John,



I am curious is there a way to overlay a 15 minute chart on a 4 hr chart????


Thanks in advance

Mike
[2024-10-28 13:32:31]
Sierra_Chart Engineering - Posts: 17665
This thread is now locked. It is too long.

Refer to:
Study/Price Overlay Study
Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, use the Teton service:
Sierra Chart Teton Futures Order Routing

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account