NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 122
Search: Posts Made By: bradhouser
Forum: Sierra Chart September 9th, 2023, 02:26 PM
Replies: 4
Views: 488
Posted By bradhouser
Are you running the Traders Workstation before...

Are you running the Traders Workstation before connecting?
Forum: Sierra Chart April 23rd, 2023, 10:35 PM
Replies: 1
Views: 418
Posted By bradhouser
I don't know if you are aware, but clicking the...

I don't know if you are aware, but clicking the Description button opens the documentation for the study: https://www.sierrachart.com/index.php?page=doc/StudiesReference.php&ID=169

It appears you...
Forum: Sierra Chart February 1st, 2023, 06:27 PM
Replies: 119
Views: 27,852
Posted By bradhouser
1. Assume auto looping and you want a maximum of...

1. Assume auto looping and you want a maximum of 1000 bars, put this before the calculations:
if (sc.Index < sc.ArraySize - 1000)
return;

2. Create an SCInputRef variable and call it Line1 or...
Forum: Sierra Chart January 24th, 2023, 04:46 PM
Replies: 119
Views: 27,852
Posted By bradhouser
The Study/Price Overlay Study is coded directly...

The Study/Price Overlay Study is coded directly in C++, and the source code is not available. It appears using an ASCIL version of what is a similar function uses more CPU time.
Forum: Sierra Chart October 6th, 2022, 02:23 PM
Replies: 119
Views: 27,852
Posted By bradhouser
You can use the sc.FormattedEvaluate(...

You can use the sc.FormattedEvaluate( (https://www.sierrachart.com/index.php?page=doc/ACSIL_Members_Functions.html#scFormattedEvaluate)) function to do the comparisons without floating point...
Forum: Sierra Chart March 20th, 2022, 07:47 PM
Replies: 3
Views: 2,358
Posted By bradhouser
(ATR) Average True Range is a standard study...

(ATR) Average True Range is a standard study included in Sierra Chart.
Forum: Sierra Chart January 31st, 2022, 08:36 AM
Replies: 23
Views: 9,391
Posted By bradhouser
Yes. It also converts futures trades to long...

Yes. It also converts futures trades to long Retirement Trades, supporting inverse ETFs.
Forum: Sierra Chart January 30th, 2022, 05:59 PM
Replies: 23
Views: 9,391
Posted By bradhouser
I have developed such a tool. Please PM me.

I have developed such a tool. Please PM me.
Forum: Sierra Chart January 16th, 2022, 02:28 PM
Replies: 2
Views: 2,338
Posted By bradhouser
There is Trade Simulation Mode and Live...

There is Trade Simulation Mode and Live Simulation. If Trade Sim mode is enabled, then the application itself, is acting as the broker, simulating all order message activity. In Live Simulation the...
Forum: Sierra Chart October 17th, 2021, 05:07 PM
Replies: 6
Views: 2,623
Posted By bradhouser
Those playing at home, here is how to get the...

Those playing at home, here is how to get the Correct Documentation (thanks to ondafringe for pointing out the issue with truncated links).

Go to this page : https://bit.ly/3FVkVgV and search on...
Forum: Sierra Chart October 17th, 2021, 04:09 PM
Replies: 6
Views: 2,623
Posted By bradhouser
Follow the example here:...

Follow the example here: https://www.sierrachart.com/index.php?page=doc/ACSIL_Members_Functions.html#scGetChartBaseData
Forum: Sierra Chart April 11th, 2021, 06:26 PM
Replies: 3
Views: 2,548
Posted By bradhouser
It is a "white labeled name of Sierra Chart"...

It is a "white labeled name of Sierra Chart" called Green Chart. https://www.sierrachart.com/SupportBoard.php?ThreadID=49672

It isn't clear if it has its own data and trading feeds, as they seem...
Forum: Sierra Chart February 24th, 2021, 09:08 PM
Replies: 119
Views: 27,852
Posted By bradhouser
I am not sure if this is the problem, but your...

I am not sure if this is the problem, but your cpp file needs this at the top:

#include "sierrachart.h"
Forum: Sierra Chart December 16th, 2020, 04:08 PM
Replies: 119
Views: 27,852
Posted By bradhouser
if ( Input_StartTime.GetTime() <= CurrentBarTime...

if ( Input_StartTime.GetTime() <= CurrentBarTime <= Input_EndTime.GetTime() )

This won't work because you are trying to compare three numbers. Comparison operators only take two operands. You...
Forum: Sierra Chart October 4th, 2020, 09:25 PM
Replies: 3
Views: 4,295
Posted By bradhouser
No on both counts.

No on both counts.
Forum: Sierra Chart July 8th, 2020, 02:39 PM
Replies: 119
Views: 27,852
Posted By bradhouser
In this order: 1. Analysis>>Build Custom...

In this order:
1. Analysis>>Build Custom Studies DLL>>Build >> Install Visual C++ Compiler
2. Install Visual Studio. (if you had it installed already before doing step 1, then you need to...
Forum: Sierra Chart July 3rd, 2020, 06:59 AM
Replies: 40
Views: 17,668
Posted By bradhouser
Correct.

Correct.
Forum: Sierra Chart July 2nd, 2020, 01:53 PM
Replies: 40
Views: 17,668
Posted By bradhouser
Sierra has several different ways to backtest....

Sierra has several different ways to backtest. The closer you get to real time, the more accurate it is. If you try to test at high speed, you will get different results. This does make it difficult...
Forum: Sierra Chart June 28th, 2020, 02:34 PM
Replies: 1
Views: 2,231
Posted By bradhouser
Auto Hot Key should work....

Auto Hot Key should work. https://nexusfi.com/sierra-chart/40526-hotkey-s-trading-keyboard-completed-ahk-code.html#post598208
Forum: Sierra Chart October 12th, 2019, 08:14 AM
Replies: 3
Views: 1,072
Posted By bradhouser
Once a parent order is filled, the orderid is...

Once a parent order is filled, the orderid is read from the NewOrder object, it needs to be kept in a persistent variable for future use.


int ParentInternalOrderID = NewOrder.InternalOrderID;
...
Forum: Sierra Chart October 12th, 2019, 06:24 AM
Replies: 16
Views: 6,638
Posted By bradhouser
sc.LastTradePrice

sc.LastTradePrice
Forum: Sierra Chart September 4th, 2018, 07:16 PM
Replies: 182
Views: 65,828
Posted By bradhouser
OK. You may want to look at the "Trade Management...

OK. You may want to look at the "Trade Management by Study" Study, where the stop can be moved to a new location based on your rules.
Forum: Sierra Chart September 4th, 2018, 06:07 AM
Replies: 182
Views: 65,828
Posted By bradhouser
Are you using the Spreadsheet System/Alert? If so...

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...
Forum: Sierra Chart September 3rd, 2018, 07:20 AM
Replies: 182
Views: 65,828
Posted By bradhouser
Unless I am missing something, if your order to...

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...
Forum: Sierra Chart August 5th, 2018, 05:36 PM
Replies: 4
Views: 1,967
Posted By bradhouser
I am experienced in developing trading systems...

I am experienced in developing trading systems for Sierra Chart. PM me for more info.


Sent from my iPad using futures.io (https://on.futures.io/app)
Showing results 1 to 25 of 122

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