NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 56
Search: Posts Made By: MooreTech
Forum: Off-Topic April 30th, 2019, 11:08 AM
Replies: 169
Views: 34,356
Posted By MooreTech
https://youtu.be/NLyvKewqPSA

https://youtu.be/NLyvKewqPSA
Forum: Off-Topic September 17th, 2013, 06:53 PM
Replies: 115
Views: 23,101
Posted By MooreTech
30 and counting... as slow as possible!!! I had...

30 and counting... as slow as possible!!! I had to quote this because I loved Alfred the Avatar!
Forum: NinjaTrader August 27th, 2013, 07:57 PM
Replies: 5
Views: 1,537
Posted By MooreTech
If you set AllowRemovalOfDrawObjects to true in...

If you set AllowRemovalOfDrawObjects to true in the Initialize method, you will be able to manually delete the draw objects.

AllowRemovalOfDrawObjects...
Forum: NinjaTrader August 27th, 2013, 07:46 PM
Replies: 15
Views: 8,776
Posted By MooreTech
You may want to have a look at the Documentation...

You may want to have a look at the Documentation for the NTDirect.DLL file. See the section on DLL functions at the link below:

NinjaTrader Version 7...
Forum: NinjaTrader January 22nd, 2012, 09:00 AM
Replies: 3
Views: 1,465
Posted By MooreTech
You need to assign a value to the orderId...

You need to assign a value to the orderId variable to prevent this. Here is a sample (I have not tested this).

60283
Forum: NinjaTrader September 24th, 2011, 08:33 AM
Replies: 2
Views: 2,843
Posted By MooreTech
Try: ChartControl.ChartPanel.Invalidate(); ...

Try:

ChartControl.ChartPanel.Invalidate();

This will force the chart to repaint, thus calling the Plot method for you.
Forum: NinjaTrader September 5th, 2011, 06:35 AM
Replies: 9
Views: 1,906
Posted By MooreTech
See if this helps... IndicatorBase[]...

See if this helps...


IndicatorBase[] indicators = ChartControl.Indicators;
foreach (Indicator i in indicators)
{
if (i.Panel==2)
{
// do something here
}
Forum: NinjaTrader August 27th, 2011, 06:45 AM
Replies: 24
Views: 17,807
Posted By MooreTech
Dean, I am happy to help! Feel free to pass the...

Dean,
I am happy to help! Feel free to pass the indicator along to anyone you would like.
Forum: NinjaTrader August 25th, 2011, 09:11 AM
Replies: 24
Views: 17,807
Posted By MooreTech
Try this indicator

Try this indicator
Forum: EasyLanguage Programming August 18th, 2011, 07:29 PM
Replies: 7
Views: 4,942
Posted By MooreTech
As far as I know, MultiCharts does not support...

As far as I know, MultiCharts does not support this as of yet. TradeStation is able to send orders from the subroutines.
Forum: EasyLanguage Programming August 18th, 2011, 07:27 PM
Replies: 7
Views: 4,942
Posted By MooreTech
I'm not sure which version introduced the...

I'm not sure which version introduced the functionality. Give it a try and see.
Forum: EasyLanguage Programming August 18th, 2011, 02:20 PM
Replies: 7
Views: 4,942
Posted By MooreTech
You can define your subroutines as methods. ...

You can define your subroutines as methods.


Method double Subroutine1(double dou) begin
if t=1200 then Buy this bar;
Return dou*2;
end;

Method double Subroutine2(double...
Forum: EasyLanguage Programming August 10th, 2011, 09:31 AM
Replies: 2
Views: 3,439
Posted By MooreTech
When defining Inputs, the value is automatically...

When defining Inputs, the value is automatically updated on every bar. Therefore, using an input of Price(Close), the Price variable will always hold the closing price of the latest bar.

When...
Forum: Trading Reviews and Vendors June 22nd, 2011, 11:16 AM
Replies: 14
Views: 10,936
Posted By MooreTech
Most of the calculations are not necessary when...

Most of the calculations are not necessary when loading historical data. For this reason, I do not run these calculations when loading the data, they are only run in real-time. Therefore, the...
Forum: NinjaTrader May 31st, 2011, 03:05 PM
Replies: 3
Views: 5,083
Posted By MooreTech
Your first problem (less important problem) is...

Your first problem (less important problem) is controlled by the CalculateOnBarClose setting. In your code, it appears you have this defaulted to true, which means the code should only run on the...
Forum: NinjaTrader March 27th, 2011, 08:15 AM
Replies: 5
Views: 3,268
Posted By MooreTech
It is probably the "Maximum bars look back"...

It is probably the "Maximum bars look back" setting for the indicator. Try setting it to "Infinite".
Forum: NinjaTrader March 8th, 2011, 09:45 AM
Replies: 10
Views: 7,701
Posted By MooreTech
A little snippet to help get you started. I...

A little snippet to help get you started. I didn't test this code, but it should give you the idea.


TimeSpan ts = new TimeSpan(1,0,0,0);
DateTime prevTime = Time[0].Subtract(ts);
int barsAgo =...
Forum: NinjaTrader March 8th, 2011, 09:16 AM
Replies: 10
Views: 7,701
Posted By MooreTech
The problem is still with the same line of code....

The problem is still with the same line of code. Time[0].Day returns a value between 1 and 31 indicating the day of the month. If the day of the month is the first, Time[0].Day-n will return a 0 or...
Forum: NinjaTrader March 8th, 2011, 07:53 AM
Replies: 10
Views: 7,701
Posted By MooreTech
My guess is that the error is in the following...

My guess is that the error is in the following line of code.


// Calculate the bars prior intraday close value for the 1515 hrs bar
int barsAgo = CurrentBar - Bars.GetBar(new...
Forum: NinjaTrader February 26th, 2011, 10:30 AM
Replies: 3
Views: 3,841
Posted By MooreTech
You won't be able to do this via Strategy Wizard....

You won't be able to do this via Strategy Wizard. You can program your strategy to display an order entry interface on your chart, then all entries taken from this interface can be managed according...
Forum: NinjaTrader January 25th, 2011, 02:15 PM
Replies: 4
Views: 2,723
Posted By MooreTech
Try checking that your position is not long...

Try checking that your position is not long before sending the long entry orders.
Forum: NinjaTrader January 2nd, 2011, 09:53 AM
Replies: 10
Views: 5,516
Posted By MooreTech
Try ...

Try


Lines[0].Pen.DashStyle=DashStyle.Dash;
Lines[1].Pen.DashStyle=DashStyle.Dash;
Lines[2].Pen.DashStyle=DashStyle.Dash;
Forum: NinjaTrader December 15th, 2010, 08:30 AM
Replies: 2
Views: 5,819
Posted By MooreTech
You must give all of your Drawing Objects a...

You must give all of your Drawing Objects a unique name. Try changing:

DrawDot("BigBarDot",true, 0, High[0] + (TickSize * 5),Color.Gold);
To:


DrawDot(CurrentBar.ToString() +...
Forum: EasyLanguage Programming December 5th, 2010, 08:29 AM
Replies: 4
Views: 2,493
Posted By MooreTech
I did not test this, but I think it should work. ...

I did not test this, but I think it should work.


if month(d)<>month(d[1]) then begin
startofmonth=netprofit;
allowtrading=true;
end;

if netprofit<startofmonth-MyMonthlyStop then begin
//...
Forum: NinjaTrader November 19th, 2010, 07:56 AM
Replies: 2
Views: 8,271
Posted By MooreTech
Here's an example of overriding the plot method....

Here's an example of overriding the plot method. If you want to plot the text on the left, you will probably want to increase the left margin by using:

ChartControl.MarginLeft = 20;


//
//...
Showing results 1 to 25 of 56

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