NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 210
Search: Posts Made By: Trembling Hand
Forum: Sierra Chart February 6th, 2024, 05:36 AM
Replies: 23
Views: 946
Posted By Trembling Hand
You actually can just check this yourself. Open a...

You actually can just check this yourself. Open a DOM hit "buy market" and look into the Activity log. You will have a buy order without a limit price (order 1 in pic). Then submit a buy above the...
Forum: Sierra Chart February 5th, 2024, 04:21 AM
Replies: 23
Views: 946
Posted By Trembling Hand
Not sure what your problem is with the snarky...

Not sure what your problem is with the snarky reply but you were incorrect. A limit buy submitted above the best ask is 100% possible. An order book matching rules are price and then time...
Forum: Sierra Chart February 4th, 2024, 07:11 AM
Replies: 23
Views: 946
Posted By Trembling Hand
This is not correct. Of course you can send a...

This is not correct. Of course you can send a limit buy order +1 point above the current lowest ask.
Forum: Sierra Chart November 26th, 2023, 07:16 PM
Replies: 60
Views: 20,675
Posted By Trembling Hand
In the same study or same namespace. Its...

In the same study or same namespace.

Its much easier to help if you include all your code.
Forum: Sierra Chart November 15th, 2023, 06:24 AM
Replies: 60
Views: 20,675
Posted By Trembling Hand
You just have do duplicate the code per extra...

You just have do duplicate the code per extra Button/Study.

Add a new incremented SCInputRef
in SetDefualts declare a name and set default StudyID
Then duplicate the if (sc.MenuEventID ...........
Forum: Traders Hideout October 29th, 2023, 05:27 PM
Replies: 4
Views: 382
Posted By Trembling Hand
Kospi Futures. Order book just about as thick as...

Kospi Futures. Order book just about as thick as the ES. Only US broker that I know of that offer access is IB.
Forum: Traders Hideout October 22nd, 2023, 09:19 PM
Replies: 47
Views: 3,015
Posted By Trembling Hand
Not only that you will pay double the...

Not only that you will pay double the brokerage/spread than just getting flat.
Forum: NinjaTrader October 14th, 2023, 04:58 PM
Replies: 2
Views: 630
Posted By Trembling Hand
Actually having a second look at this that if...

Actually having a second look at this that if statement does nothing. You should to turn it into a bool variable like this,


bool CanTrade = Times[1][0].TimeOfDay >= startTime.TimeOfDay &&...
Forum: NinjaTrader October 14th, 2023, 04:24 PM
Replies: 2
Views: 630
Posted By Trembling Hand
Just use the secondary time series as the input...

Just use the secondary time series as the input for the if statement. Thats is secondary Times[1][0] instead of primary Times[0][0]

(Times[1][0].TimeOfDay >= startTime.TimeOfDay) &&...
Forum: Sierra Chart September 17th, 2023, 07:29 AM
Replies: 3
Views: 416
Posted By Trembling Hand
This is all you need. Have a look at the example...

This is all you need. Have a look at the example for the function.

sc.SimpleMovAvg(s[sc.Index], Subgraph_Ma, Input_CalcLength.GetInt());

There is no MA[sc.Index] =
Forum: Sierra Chart September 16th, 2023, 09:46 AM
Replies: 3
Views: 416
Posted By Trembling Hand
You have the MA function incorrect. When you get...

You have the MA function incorrect. When you get an error always look at the docs,

sc.SimpleMovAvg() (https://shorturl.at/beuBH)

Its basically the three parameters.

sc.SimpleMovAvg([data...
Forum: Sierra Chart September 5th, 2023, 07:28 AM
Replies: 9
Views: 563
Posted By Trembling Hand
I don't think you should have the session times...

I don't think you should have the session times as 00:00:00 to 23:59:59.
The evening sessions finishes at 3 AM. Thats part of the previous days trading.

I use 9 am to 3am for HKFE
Forum: Sierra Chart September 1st, 2023, 05:24 AM
Replies: 9
Views: 563
Posted By Trembling Hand
Hi I'm pretty sure the daily chart from...

Hi

I'm pretty sure the daily chart from intraday data just needs the session times to be set correctly into the chart settings.

On the zigzag not including the current un-closed bar is because...
Forum: Sierra Chart August 9th, 2023, 11:54 AM
Replies: 1
Views: 249
Posted By Trembling Hand
You can download the last 180 days within SC. ...

You can download the last 180 days within SC.

See "Downloading Of Historical Market Depth Data" at the bottom of the page.

...
Forum: Sierra Chart August 9th, 2023, 02:12 AM
Replies: 3
Views: 477
Posted By Trembling Hand
Its telling you what is wrong with your code and...

Its telling you what is wrong with your code and what line. "note: candidate expects 3 arguments, 2 provided"

You are not providing all required parameters for each function that is throwing an...
Forum: Sierra Chart August 8th, 2023, 05:13 AM
Replies: 3
Views: 477
Posted By Trembling Hand
What does the error say?

What does the error say?
Forum: Sierra Chart May 24th, 2023, 08:34 PM
Replies: 1
Views: 562
Posted By Trembling Hand
Create a condition to check if the RSI < 30. If...

Create a condition to check if the RSI < 30. If so store the bar index in a persistent int (RSILessThan30). Then add another condition to your crossover conditional check. if current bar index -...
Forum: Sierra Chart May 14th, 2023, 07:42 PM
Replies: 4
Views: 951
Posted By Trembling Hand
Yes

Yes
Forum: Sierra Chart April 21st, 2023, 02:36 AM
Replies: 119
Views: 28,056
Posted By Trembling Hand
I'm talking about the code posted to fix you...

I'm talking about the code posted to fix you work.
Forum: Sierra Chart April 20th, 2023, 08:40 PM
Replies: 119
Views: 28,056
Posted By Trembling Hand
So did the above code changes work?

So did the above code changes work?
Forum: Sierra Chart April 19th, 2023, 07:43 PM
Replies: 119
Views: 28,056
Posted By Trembling Hand
Ok a second look and I see what you are trying to...

Ok a second look and I see what you are trying to do but its the wrong method.



A subgraph to store a single value is way too complicated. Just use a persistent int and reference it in the...
Forum: Sierra Chart April 19th, 2023, 07:18 PM
Replies: 119
Views: 28,056
Posted By Trembling Hand
Sorry Looking at the code it seems like you are...

Sorry Looking at the code it seems like you are trying to do something very weird. My understanding from above is.


Chart 1 is the base chart
Chart 2 you want linked to Chart 1 by way of a...
Forum: Sierra Chart April 19th, 2023, 09:24 AM
Replies: 119
Views: 28,056
Posted By Trembling Hand
You don't need a study to do that. You can use...

You don't need a study to do that. You can use the link numbers and bar period and chart settings.
Forum: Sierra Chart April 19th, 2023, 06:26 AM
Replies: 119
Views: 28,056
Posted By Trembling Hand
Impossible to tell without you posting your code...

Impossible to tell without you posting your code to check.
Forum: Sierra Chart March 4th, 2023, 04:46 PM
Replies: 4
Views: 951
Posted By Trembling Hand
Yeah its absolutely sucks. But for me HKFE is...

Yeah its absolutely sucks. But for me HKFE is what I mostly trade and I as you know SC is my main platform. I get around the problem by always having SC chart running on a server. That way I'm always...
Showing results 1 to 25 of 210

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