NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 92
Search: Posts Made By: kidvic
Forum: NinjaTrader November 5th, 2016, 03:01 PM
Replies: 5
Views: 1,782
Posted By kidvic
Maybe I should do a new post, but would ...

Maybe I should do a new post, but would

DoubleSeries.Set(PriceVal);
be the same as
DoubleSeries[0] = PriceVal; // ?
Forum: NinjaTrader November 5th, 2016, 02:50 PM
Replies: 5
Views: 1,782
Posted By kidvic
Thank you for this! Works great!

Thank you for this!
Works great!
Forum: NinjaTrader November 5th, 2016, 12:18 PM
Replies: 5
Views: 1,782
Posted By kidvic
NT7 to NT8, code change help.

I have an NT7 indicator that uses a for loop to set Values.

this is the code for NT7.

double PriceVal = 0;
for (int i = (ATbar - ITbar) - 1; i >= 0; i--)
{
PriceVal += Storage[i];...
Forum: NinjaTrader November 3rd, 2016, 12:48 PM
Replies: 1
Views: 925
Posted By kidvic
PartialHoliday, and Holiday next day open help. NT8

I'd like to find out what day and time the next open will be following a holiday.
I'd like to also find out what time the session will end if it is a partial holiday with an early close,
I'd like...
Forum: NinjaTrader November 3rd, 2016, 12:32 PM
Replies: 9
Views: 2,404
Posted By kidvic
unfortunately Not.

unfortunately Not.
Forum: NinjaTrader November 2nd, 2016, 03:02 PM
Replies: 1
Views: 661
Posted By kidvic
PartialHoliday, and Holiday next day open help. NT8

I'd like to find out what day and time the next open will be following a holiday.
I'd like to also find out what time the session will end if it is a parital holiday with an early close,
I'd like...
Forum: NinjaTrader October 16th, 2016, 04:02 PM
Replies: 7
Views: 1,217
Posted By kidvic
For NT8, can you have Plot have some...

For NT8, can you have Plot have some characteristics of Draw.Line and vice-versa?

It seems cumbersome, when the elements are already there.
Forum: NinjaTrader October 14th, 2016, 07:49 PM
Replies: 7
Views: 1,217
Posted By kidvic
How would you customize it using the Current OHL...

How would you customize it using the Current OHL indicator you currently have?
Do you mean by using Draw.Line?
Forum: NinjaTrader October 14th, 2016, 12:08 PM
Replies: 7
Views: 1,217
Posted By kidvic
Help program proper plot visuals NT7, NT8

I want to show only the instance of the actual last plot, I use current day ohl and i get this displayed:
PS. I know you can do this with other drawing methods, but I actually want to use plot....
Forum: NinjaTrader October 13th, 2016, 03:43 AM
Replies: 3
Views: 1,073
Posted By kidvic
since this was for plots, Values[a][0] worked...

since this was for plots, Values[a][0] worked well.....
But now, how would you suggest to create doubles with incremental sequence?
Forum: NinjaTrader October 12th, 2016, 06:11 PM
Replies: 3
Views: 1,073
Posted By kidvic
for loop properties help.

I am trying to create a for loop in NT8 in the properties.
How do I achieve this?

This is what i've tried, but I get struct errors.

#region properties
for (a = 1; a < 21;)...
Forum: NinjaTrader October 7th, 2016, 01:12 PM
Replies: 1
Views: 1,167
Posted By kidvic
NT8 HELP! sessioniterator

I'm about to give an example of what i'm trying to do by using currentbar.tostring().

To draw an arrow up on every up bar you do this:

if (Close[0] > Open[0])

Draw.ArrowUp(this,...
Forum: NinjaTrader October 7th, 2016, 01:01 PM
Replies: 4
Views: 1,766
Posted By kidvic
Thanks, it worked.

Thanks, it worked.
Forum: NinjaTrader October 3rd, 2016, 01:24 AM
Replies: 4
Views: 1,766
Posted By kidvic
NT8: DataSeries & Times Help!

So I'm trying to get data from a secondary dataseries, week, and minutes.
I'm using the primary dataseries as 15 minutes.

The problem occurs when accessing the weekly dataseries, with a barsago...
Forum: NinjaTrader August 24th, 2016, 12:58 AM
Replies: 2
Views: 1,121
Posted By kidvic
Instrument position help!

So, I've created a strategy that only fires when flat. Only problem is that Position.MarketPosition reflects ONLY on a position that the strategy has created!. In other words, If I enter a position...
Forum: NinjaTrader August 13th, 2016, 12:52 AM
Replies: 8
Views: 1,360
Posted By kidvic
Thanks for that, I tihink ill seperate the long...

Thanks for that, I tihink ill seperate the long and the short, you have always been very helpful.
Forum: NinjaTrader August 12th, 2016, 05:16 PM
Replies: 8
Views: 1,360
Posted By kidvic
it seems as though it canels, or rejects them....

it seems as though it canels, or rejects them. they pop up in the orders then go away.
Forum: NinjaTrader August 12th, 2016, 03:01 PM
Replies: 8
Views: 1,360
Posted By kidvic
I use AMP. It's really bizzare. I used to...

I use AMP.
It's really bizzare.
I used to have it with entries per direction = 2, yet it would put more instances, (mind you, when it entered 4, it actually placed apprppriate stops and profits)...
Forum: NinjaTrader August 12th, 2016, 10:55 AM
Replies: 8
Views: 1,360
Posted By kidvic
Live strategy broken

Hi,

I have a script that was working beautifully in market replay as soon as I go live, it malfunctions.

It enters 2 short liimits or 2 long limits at certain market conditions.

I have...
Forum: NinjaTrader July 28th, 2016, 03:47 PM
Replies: 9
Views: 1,146
Posted By kidvic
Greatly appreciate again.

Greatly appreciate again.
Forum: NinjaTrader July 28th, 2016, 03:39 PM
Replies: 9
Views: 1,146
Posted By kidvic
so lets say close[3] and close[6] and close[18]...

so lets say close[3] and close[6] and close[18] was greater than 45.00 how do I get each of them to exist in a new list, where I can chose based on math.max, and math.min which one value I want, so...
Forum: NinjaTrader July 28th, 2016, 03:26 PM
Replies: 9
Views: 1,146
Posted By kidvic
Thank you, this is exactly!, now how do I...

Thank you, this is exactly!, now how do I retrieve out of that list, all the ones that had high of 45.00 or greater?
Forum: NinjaTrader July 28th, 2016, 02:32 PM
Replies: 9
Views: 1,146
Posted By kidvic
Sorry I wasnt clear, I want to creat a list. ...

Sorry I wasnt clear, I want to creat a list.

not just int, so that the list contains the values.

so lets say int is 40, then it would enumerate (populate a list) 40 values of what I want it...
Forum: NinjaTrader July 27th, 2016, 02:27 PM
Replies: 9
Views: 1,146
Posted By kidvic
help creating a list.

hi.
if i have int = 20,

how do i get the close of int candles? (the last 20)

so it would get me Close[20], Close[19], Close[18] etc until Close[0]?

Thanks in advance.
Forum: NinjaTrader July 12th, 2016, 12:55 AM
Replies: 9
Views: 2,404
Posted By kidvic
Thanks for that, this is beyond my scope of...

Thanks for that, this is beyond my scope of programming.
Does anyone have an indicator/strategy already working realtime with excel, would like a template.
Showing results 1 to 25 of 92

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