Welcome to NexusFi: the best trading community on the planet, with over 150,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- see if you qualify for a discount below.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
I took time to learn c# and how to code my trading system in Ninjatrader. However, I came across NexusFi (formerly BMT)'s website and Mike's comparison between MC and NT. I'm considering of switching from NT to MC. On NT I set CalculateOnBarClose = false on my strategy. However, it doesn't seem to process tick-by-tick . There were a host of other issues that I encountered on NT. It has been pretty frustrating. At this point, I'm willing to look at alternative automation trading software.
Wonder if I could get some help here with anyone that has experience of using MC.
Can I do the following in MC7?
a) on point and figure chart - don't process the strategy unless current bar is 2 days older than the first bar.
b) find the lowest low or highest high of the last 2 days on point and figure chart?
c) add other data series/indicators to a point and figure chart?
If I could do these, hope someone could guide me through. I want to learn as much as possible before downloading MC to try it out.
Thanks a lot!
Can you help answer these questions from other members on NexusFi?
One caveat, when using exotic bar types like PnF, Renko, Kagi, 3LB, etc, the "Open" of the bar (where the strategy trade takes place from the prior bar, if IntrabarOrderGeneration is off) will be false. You can get around this by having Data1 be a non-exotic bar type, like a 1 range bar, and then Data2 for your exotic bar type.
Data1 would then be used for execution, and Data2 for signaling.
to make sure I have this right, if I set IntrabarOrderGeneration = true the following strategy for point and figure will be processed real time or tick-by-tick?
Anytime, market price is higher than High[1], signal would be triggered.
Otherwise, if I set IntrabarOrderGeneration = false, in this case, I would have to use Data1 and Data2 as you described?