Welcome to NexusFi: the best trading community on the planet, with over 200,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 -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
I'm carefully reading the Wiki part. But can't make it all on one day. I fully understand the Idea behind Wiki and find it a good idea.
I get slowly and slowly more comfortable with C# starting from scratch with BigMike’s videos
I trade forex only
This is a pure renko charts (mutli-renko bricks) question
I have to charts (let’s suppose EURJPY)
One chart is set to 9 ticks bricks
The other one to 6 ticks bricks
I use the 2 MACD’s ( We agree they have different patterns)
I don’t use any other indicators (I just get inspired by the 240 minutes ATR) but it doesn’t come inside the logic.
Let’s call them BigMACD ( the renko 9MACD)
And LittleMACD (the renko 6MACD)
Here is the logic
If BigMACD > 0 and littleMACD > 0 Enter Long or Do nothing
If BigMACD > 0 and littleMACD < 0 Stop order or Do nothing
If BigMACD < 0 and littleMACD > 0 Stop order or Do nothing
If BigMACD < 0 and littleMACD < 0 Enter Short or Do nothing
Though still a beginner, I fully understand the “CalulateOnBarClose= true (option)
Now, as a beginner with ninjascript I have this problem
If I attach my strategy to the MACD9renko, it won’t actually read my MACD6renko (COBC) and won’t run my logic
If I attach my strategy to the MACD6renko, it won’t actually read my MACD9renko (COBC) and won’t run my logic
So to rephrase all this that would look like this
CalulateOnBarClose= true
(Whether the signal comes out the Renko9MACD or the Renko6MACD)
(That’s where I hit a problem)
If BigMACD > 0 and littleMACD > 0 Enter Long or Do nothing
If BigMACD > 0 and littleMACD < 0 Stop order or Do nothing
If BigMACD < 0 and littleMACD > 0 Stop order or Do nothing
If BigMACD < 0 and littleMACD < 0 Enter Short or Do nothing
Any way around this?
PS I don't think I can attach a screen shot . I did so to a user name patbateman, but I don't think I succeded
Thanks in advance for your help
Can you help answer these questions from other members on NexusFi?
Which platform are you using? If you are using NT7, you can use 'BarsInProgress = 0' for BigMACD and 'BarsInProgress = 1' for littleMACD to work with conditions. I would suggest false for CalulateOnBarClose so you can get specific prices you want for entry/exit unless you want the next bar.