NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 31
Search: Posts Made By: maryfromcolorado
Forum: NinjaTrader April 1st, 2017, 12:39 PM
Replies: 13
Views: 6,240
Posted By maryfromcolorado
You can go to this website. Fat Tails Indicators...

You can go to this website. Fat Tails Indicators - Lizard Trader (http://lizardtrader.com/fat-tails-indicators/) Look for the SuperTrendU11.

We have a strategy we are testing that will place stops...
Forum: MultiCharts December 31st, 2016, 08:38 PM
Replies: 2
Views: 5,347
Posted By maryfromcolorado
I'd go with MultiCharts.Net, as opposed to...

I'd go with MultiCharts.Net, as opposed to Multicharts, but I like to have all the coding flexibility possible. Just personal opinion, not a big fan of NT, the disclaimer to use NT on my brokers...
Forum: Traders Hideout December 18th, 2016, 06:31 PM
Replies: 2
Views: 1,968
Posted By maryfromcolorado
Do you want realtime or is past ok ? Yahoo...

Do you want realtime or is past ok ?

Yahoo has an Api you can use to get price info but it might be 15 minutes behind, Here is an example.
...
Forum: NinjaTrader December 18th, 2016, 05:41 PM
Replies: 2
Views: 1,322
Posted By maryfromcolorado
This indicator does not expose any public info....

This indicator does not expose any public info. All is private.
You would need to figure out which data you need, and make a public property.

[Browsable(false)]
[XmlIgnore]...
Forum: Platforms and Indicators December 13th, 2016, 12:32 PM
Replies: 7
Views: 2,635
Posted By maryfromcolorado
Sorry I don't know enough about AmiBroker to help...

Sorry I don't know enough about AmiBroker to help further without a lot of investigation.
Forum: Platforms and Indicators December 12th, 2016, 02:59 PM
Replies: 7
Views: 2,635
Posted By maryfromcolorado
I am just looking at documentation. It should...

I am just looking at documentation. It should work.

https://www.amibroker.com/guide/afl/nz.html

You can use the other function then

HaOpen = IIf( IsFinite( HaOpen), HaOpen, HaClose);
...
Forum: Platforms and Indicators December 10th, 2016, 02:40 PM
Replies: 7
Views: 2,635
Posted By maryfromcolorado
Use the function Nz. Tests for null or undefined...

Use the function Nz. Tests for null or undefined if so sets to second value.

HaOpen = Nz(HaOpen, HaClose);
Forum: NinjaTrader December 10th, 2016, 01:14 PM
Replies: 3
Views: 1,574
Posted By maryfromcolorado
You don't have the code, just the executables. So...

You don't have the code, just the executables. So it would have to be redeveloped from scratch and reverse engineered first. It does say what indicators their indicators are based on in the pdf, but...
Forum: NinjaTrader December 8th, 2016, 08:32 PM
Replies: 9
Views: 2,995
Posted By maryfromcolorado
They had so many design flaws that this was not...

They had so many design flaws that this was not possible. I agree though they should have provided some tools to help migrate the basics like workspaces.
Forum: Brokers December 7th, 2016, 08:18 PM
Replies: 5
Views: 1,664
Posted By maryfromcolorado
It doesn't look like S5 works with Ninjatrader. ...

It doesn't look like S5 works with Ninjatrader.

Here is where I checked. https://stage5trading.com/platform-solutions/

I don't know if it is worth it to pay the fees for NT, just for charting...
Forum: Platforms and Indicators December 7th, 2016, 07:56 PM
Replies: 2
Views: 1,475
Posted By maryfromcolorado
I think you should explore this link. ...

I think you should explore this link.

https://www.interactivebrokers.com/en/?f=%2Fen%2Fgeneral%2Feducation%2Fpdfnotes%2FPDF-TwsExcelAPI.php

They have a spreadsheet built to communicate via DDE...
Forum: EasyLanguage Programming December 7th, 2016, 07:44 PM
Replies: 2
Views: 965
Posted By maryfromcolorado
Can you post the code ?

Can you post the code ?
Forum: NinjaTrader November 28th, 2016, 11:43 PM
Replies: 2
Views: 1,391
Posted By maryfromcolorado
Is Dot a multi anchor property (Anchor would be...

Is Dot a multi anchor property (Anchor would be null and you would get that error)

Try iterating

foreach (ChartAnchor chartAnchor in myDot.Anchors)
{
Print(chartAnchor.Price);
}
Forum: NinjaTrader November 3rd, 2016, 02:16 AM
Replies: 13
Views: 6,240
Posted By maryfromcolorado
Zefi, I'll try to put something together...

Zefi,

I'll try to put something together this weekend.

:)
Forum: NinjaTrader November 2nd, 2016, 01:13 AM
Replies: 13
Views: 6,240
Posted By maryfromcolorado
Yes, all I meant is a regular strategy can deal...

Yes, all I meant is a regular strategy can deal with the boolseries indicator, and work fine. Just not strategy builder. I was offering help to accomplish this in a normal strategy. If needed.
...
Forum: MultiCharts October 31st, 2016, 11:36 PM
Replies: 7
Views: 1,934
Posted By maryfromcolorado
Just use the function If CurrentTime > 1500...

Just use the function

If CurrentTime > 1500 Then
return true;

it uses your local computer time though not the broker.
Forum: TradeStation October 31st, 2016, 11:26 PM
Replies: 1
Views: 1,407
Posted By maryfromcolorado
No you just use the syntax..... ...

No you just use the syntax.....

MyRSIArray[100, 5] (0);
Forum: Traders Hideout October 31st, 2016, 11:19 PM
Replies: 2
Views: 2,809
Posted By maryfromcolorado
Have you looked at the manual for ADE ? You need...

Have you looked at the manual for ADE ? You need to write the new indicator to export the data from the chart, then you load that data from the other chart. Is that what you were thinking. I don't...
Forum: TradeStation October 31st, 2016, 09:05 PM
Replies: 3
Views: 3,125
Posted By maryfromcolorado
Win 10 uses memory differently and you may see...

Win 10 uses memory differently and you may see higher usage, but this isn't a bad thing. Do you have the 64bit edition of Win10 ? It would be faster than 32 bit. TradeStation is only 32 bit, bummer....
Forum: Platforms and Indicators October 31st, 2016, 08:32 PM
Replies: 3
Views: 4,167
Posted By maryfromcolorado
Probably not, but I wrote something similar. easy...

Probably not, but I wrote something similar. easy to write. really. Just from memory.

Just use 3 arrays

double Bids[100];
double Asks[100];
uint TickCounts[100];

int iIndex = 0;
Forum: NinjaTrader October 31st, 2016, 08:10 PM
Replies: 13
Views: 6,240
Posted By maryfromcolorado
The indicator anasupertrend can't be used from...

The indicator anasupertrend can't be used from Strategy Builder. Only a regular NT strategy.

It would be easy to use the indicator directly from a regular strategy and close on the right indicator...
Forum: TradeStation October 31st, 2016, 08:04 PM
Replies: 2
Views: 2,077
Posted By maryfromcolorado
Oh, I forgot that Trade Station also uses Easy...

Oh, I forgot that Trade Station also uses Easy Language to program too.

GL
Mary
Forum: NinjaTrader October 30th, 2016, 10:28 PM
Replies: 3
Views: 1,272
Posted By maryfromcolorado
Is the problem with putting in the Stop Loss...

Is the problem with putting in the Stop Loss order, or canceling an order. It is possible that the spread between Bid and Ask is too high, and the stop loss calculated on a Long is a higher price...
Forum: NinjaTrader October 30th, 2016, 04:43 PM
Replies: 4
Views: 2,092
Posted By maryfromcolorado
Thats because it doesn't determine duplicates by...

Thats because it doesn't determine duplicates by filename. Just by the class name in the indicator file. Thats where the duplicate is. Always name the class, the same as the file and there won't be...
Forum: NinjaTrader October 30th, 2016, 02:35 PM
Replies: 13
Views: 6,240
Posted By maryfromcolorado
You can use the anaSuperTrendU11 indicator from a...

You can use the anaSuperTrendU11 indicator from a strategy to exit. Just not strategy builder. Is that what you really want ?
Showing results 1 to 25 of 31

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