NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 29
Search: Posts Made By: Trembling Hand
Forum: Sierra Chart June 6th, 2022, 08:51 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Sorry about the slow reply. If you look at the...

Sorry about the slow reply. If you look at the Studies7.cpp file in C:\SierraChart\ACS_Source On line 1187 in the CreateZigZagLineLabel function you can see that the calculation is,

int64_t...
Forum: Sierra Chart May 17th, 2022, 04:50 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
not sure what you are trying to do but I think...

not sure what you are trying to do but I think this is all you need,

https://www.sierrachart.com/index.php?page=doc/StudiesReference.php&ID=379&Name=Write_Bar_and_Study_Data_To_File
Forum: Sierra Chart January 4th, 2022, 01:52 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Thats somewhat of a mess of a screen dump. Happy...

Thats somewhat of a mess of a screen dump. Happy to help but don't want to spend hours trying to replicate what you are trying to achieve to then just start to debug and more than likely not even...
Forum: Sierra Chart September 16th, 2021, 11:45 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
There is no need for a header

There is no need for a header
Forum: Sierra Chart September 16th, 2021, 08:26 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Delete all the text in dllmain.cpp. copy and...

Delete all the text in dllmain.cpp. copy and paste all the text from MyNeatoStudy.cpp into dllmain.cpp. remove the MyNeatoStudy.cpp from the project folder and then build.

that should produce a...
Forum: Sierra Chart September 16th, 2021, 07:35 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
I'm not sure you have followed the steps...

I'm not sure you have followed the steps correctly. You should only have 1 .cpp file. how did the the MyNeatoStudy.cpp get there?
Forum: Sierra Chart April 28th, 2021, 09:27 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
That doesn't need ASCIL, just use a chartbook and...

That doesn't need ASCIL, just use a chartbook and change the contract.

But please start a new thread as it would be nice to keep this thread clear of off topic stuff..
Forum: Sierra Chart February 20th, 2021, 07:53 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Wow! This is an error! I was googling...

Wow! This is an error! I was googling sc.DateTimeOut[] in relation to custom bars and this thread came up at post #8! I was like huh?? That function, sc.DateTimeOut[] , is only for when you are...
Forum: Sierra Chart December 15th, 2020, 09:00 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Please keep this tread for the example I post so...

Please keep this tread for the example I post so the thread remains concise and on topic. If you have an unrelated question to my examples please start another thread or ask in here.
...
Forum: Sierra Chart December 15th, 2020, 07:48 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
https://www.sierrachart.com/index.php?page=doc/SCD...

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

#SCDateTimeMember_GetDateTimeYMDHMS
int Year, Month, Day, Hour, Minute, Second;

SCDateTimeVariable.GetDateTimeYMDHMS(Year, Month,...
Forum: Sierra Chart December 11th, 2020, 01:22 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
No have a look at the docs for that function and...

No have a look at the docs for that function and familiarise yourself with what zero indexing is.
"InputIndex: The zero-based index of the Input to get the value for. The Input index values + 1 are...
Forum: Sierra Chart December 10th, 2020, 05:23 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Hey? Isn't that what the above example is? Its...

Hey? Isn't that what the above example is? Its importing data from one study into another and using it.
Forum: Sierra Chart December 9th, 2020, 09:56 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Ok here is a quick and dirty example of using the...

Ok here is a quick and dirty example of using the arrays and input settings in a study to use as triggers for events in another study. This could be used for a trading system or another study. Using...
Forum: Sierra Chart December 8th, 2020, 05:18 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Hi guys been busy on a project so had to let this...

Hi guys been busy on a project so had to let this slide for a while.



I'll put up another example later today/tomorrow to show this but if you cannot wait you use one of these ACSIL functions...
Forum: Sierra Chart July 19th, 2020, 07:00 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
SCSFExport...

SCSFExport scsf_SimpleMaExamples(SCStudyInterfaceRef sc)
{
// Declare All study subgraphs
SCSubgraphRef SimpleMA = sc.Subgraph[0];
SCSubgraphRef SCSimpleMA = sc.Subgraph[1];
...
Forum: Sierra Chart July 10th, 2020, 09:28 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Ok I'm going to do another rather simple example...

Ok I'm going to do another rather simple example to expand on a few fundamentals then I'll start taking request.

Firstly when making a new Study we can, from here, start it in two ways. We could...
Forum: Sierra Chart July 2nd, 2020, 12:12 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
I'll have another example to build on in a few...

I'll have another example to build on in a few days, I've been busier than I thought this week. Stay tuned......
Forum: Sierra Chart June 28th, 2020, 04:20 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
All that looks like a lot of work but actually...

All that looks like a lot of work but actually its pretty simple.

Set up a Visual Studio .dll project and set the parameters for SC (Output directory, Include Directory, Set Not using Headers and...
Forum: Sierra Chart June 27th, 2020, 03:03 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Here is our complete code with some comments in...

Here is our complete code with some comments in the programming section to explain each line,

//Make sure your custom studies source code file has the following two lines at the top of the file...
Forum: Sierra Chart June 27th, 2020, 02:56 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
To finish off this first example we are going to...

To finish off this first example we are going to add some data to the log as a way of showing how to track values in your programming and use our as yet unused BarRangeMultiplier input. Which is very...
Forum: Sierra Chart June 26th, 2020, 04:59 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Now to put all this in to action. To...

Now to put all this in to action.

To populate our Subgraph with our calculation which we want to do as bar range the code would be,

BarRange[sc.Index] = sc.High[sc.Index] - sc.Low[sc.Index];
...
Forum: Sierra Chart June 26th, 2020, 04:44 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
To understand how to use chart data you have to...

To understand how to use chart data you have to understand how Bar data corresponds to arrays and indexing.

An array is a container object that holds a fixed number of values of a single type....
Forum: Sierra Chart June 26th, 2020, 01:42 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Ok lets do some basic programming. To start...

Ok lets do some basic programming.

To start we will jump straight into accessing and display some data into the log and plotting a basic Subgraph. When writing studies its very helpful to have...
Forum: Sierra Chart June 25th, 2020, 10:35 PM
Replies: 55
Views: 34,402
Posted By Trembling Hand
Ok so as it stands we have a framework for...

Ok so as it stands we have a framework for building any Sierra Chart study in this code we compile in MSVS.
The very first line of code always is
#include "sierrachart.h"
This brings into our...
Forum: Sierra Chart June 25th, 2020, 03:21 AM
Replies: 55
Views: 34,402
Posted By Trembling Hand
I'll come back tomorrow and start the actual...

I'll come back tomorrow and start the actual programming part but as it stands up to this point if you have followed along correctly you will have a .dll in SC Data folder which is the complided...
Showing results 1 to 25 of 29

What unexpected challenges have you encountered while trading on a "Funded Trader" platform?

 


 
 


© 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