Login Page - Create Account

Support Board


Date/Time: Tue, 30 Apr 2024 13:41:48 +0000



ACSIL: sc.TickSize from other chart

View Count: 2349

[2016-01-16 14:59:13]
User53601 - Posts: 105
Hello,

Is there a way to get an access to sc.TickSize in other Chart/Symbol ?
[2016-01-16 17:35:00]
Sierra Chart Engineering - Posts: 104368
This is not currently supported but will be sometime this year.
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, *change* to the Teton service:
Sierra Chart Teton Futures Order Routing
[2016-01-18 11:03:28]
Marmany - Posts: 303
For info I achieve the result you are after by having a study on the transmitting chart with:
float& TckSize = sc.GetPersistentFloat(123);
TckSize = sc.TickSize();

Then on the receiver chart retrieve the value with a study containing:
SCInputRef TckSizeFeed = sc.Input[1]:

if(sc.SetDefaults)
{
    TckSizeFeed .Name = "Tick Size Feed";
    TckSizeFeed .SetChartStudyValues(1,1);// change digits as necessary

}
float TckSize = sc.GetStudyPersistentFloatFromChart(TckSizeFeed.GetChartNumber(), TckSizeFeed.GetStudyID(), 123);

First time the receiver study is run make sure in Study Settings that correct Transmitter chart is being picked up.

Hope this also works for you.
[2016-01-18 12:45:23]
User53601 - Posts: 105
Thanks, both Marmany and SC.
[2017-01-16 20:26:38]
User53601 - Posts: 105
to SC:

is this available already?:

sc.TickSize in other Chart/Symbol
[2017-01-16 20:36:27]
Sierra Chart Engineering - Posts: 104368
No, this is not supported.
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, *change* to 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