Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

walterw

Playing with the VMAR`s open research

Recommended Posts

Hi Bruce... Ninjatrader would be the way... it has tick charts and its free, also forex data is free there... so far had tested quite a lot and has a very friendly charting functions and no connection issues (very important )...

 

I would love to get a chart on Ninjatrader similar to Unicorn`s on amibroker... hope we get there...

 

The edge of using Tick charts on forex is being able to get a very good precise timing... even better than the 1 min we actually have on mt4...

 

I dont know how their coding language differs to mt4... but if we could migrate there, it would be worth the effort eventually... cheers Walter.

 

It uses C# which is not only for indicator programming, so it has more stuff but is also a little more complex but with less limitations. I haven't coded MT4 stuff but from what I have seen I prefer NT.

 

Things that are missing in NT: using data from other time frames in an indicator

Also the indicator on indicator thing is not possible to configure on the chart, but is easy to do in the code.

Share this post


Link to post
Share on other sites
Walter

 

What data feed are you using to get free forex data into NT?

 

Cheers

 

Blu-Ray

 

 

NT has already included Gain forex data... now, there is one parameter where I choose ninjatrader servers and get historical data (up too 2.5 years)... much better data also... really its a very friendly platform..

 

Take care Blu ¡¡ cheers Walter.

Share this post


Link to post
Share on other sites

 

Now let me ask again inputs :

 

Unicorns _Cyan line

_ Red line

 

Cyan: ADX:3, EMA:3, Stoch:5, MA:2

Cyan: ADX:5, EMA:5, Stoch:10, MA:2

 

I haven't looked into the rainbow yet, the MA stays constant all the time.

Don't think it will take much effort.

 

Cheers

Share this post


Link to post
Share on other sites

I had a minor bug in the Vidya as well.

 

Good day Sparrow;

 

in your code:

 

double adxMin = MIN( ADX( Low, ADXPeriod ), StochPeriod )[ 0 ];

double adxMax = MAX( ADX( High, ADXPeriod ), StochPeriod )[ 0 ];

 

are you certain that these lines of code compute

 

adxmin = LLV(adx, stoch_period) ;

Lowest value of adx in the last stoch_period bars ?

and

adxmax = HHV(adx, stoch_period) ;

Highest value of adx in the last stoch_period bars ?

 

adx in my implementation is computed on the close. (as is usually done).

Does the Ninja Trader have the HHV and LLV functions?

 

cheers.

Unicorn.

Share this post


Link to post
Share on other sites
Good day Sparrow;

 

in your code:

 

double adxMin = MIN( ADX( Low, ADXPeriod ), StochPeriod )[ 0 ];

double adxMax = MAX( ADX( High, ADXPeriod ), StochPeriod )[ 0 ];

 

are you certain that these lines of code compute

 

adxmin = LLV(adx, stoch_period) ;

Lowest value of adx in the last stoch_period bars ?

and

adxmax = HHV(adx, stoch_period) ;

Highest value of adx in the last stoch_period bars ?

 

adx in my implementation is computed on the close. (as is usually done).

Does the Ninja Trader have the HHV and LLV functions?

 

cheers.

Unicorn.

 

Hi Unicorn,

 

Thanks for reviewing my code, you're right I got confused with LLV and HHV.

NT hasn't got LLV or HHV, but ADX produces only 1 value per bar so it is not necessary. Otherwise can be done by MIN( Low, Period ), MAX( High, Period ).

 

Fortunately the glitch does not produce very different results.

 

Cheers and thanks

FantailVMA1_1.4.zip

Share this post


Link to post
Share on other sites

Now let me ask again inputs :

 

Unicorns _Cyan line _ Red line

 

Walter;

 

the values I have used are also depicted in my charts, in the following notation:

 

In vmar_1

cyan line is: signal vmar_1(ema_periods, adx_periods)

and

red line is: rainbow base vmar_1(ema_periods, adx_periods);

 

Note that in vmar_1 implementation, stoch_periods = adx_periods.

 

In vmar_2

cyan line is: signal vmar_2(ema_periods, adx_periods, stoch_periods);

and

red line is: rainbow base vmar_2(ema_periods, adx_periods, stoch_periods);

 

Usually I have used:

 

signal vmar_2(ema_periods=3 or 4, adx_periods=4 or 5 or even 8, stoch_periods = 4 or 5 or even 8, 10)

and

rainbow base vmar_2(ema_periods=5 or 6, adx_periods=4 or 5, or even 8 stoch_periods = 4 or 5 or even 8, 10)

 

 

Take care.

Unicorn.

Share this post


Link to post
Share on other sites

rainbow base vmar_2(ema_periods=5 or 6, adx_periods=4 or 5, or even 8 stoch_periods = 4 or 5 or even 8, 10)

 

 

Take care.

Unicorn.

 

Ok I see... now from that base line (red line) would the rainbow averages be 2 , 4 , 6 , 8 etc until 100 ? or what numbers exactly... thanks Walter.

Share this post


Link to post
Share on other sites
Hi Unicorn,

 

Thanks for reviewing my code.

 

Cheers and thanks

 

Sparrow;

 

In your code, I cannot locate where you compute the rainbow :confused:, i.e.

 

 

for (rainbow_ema_periods=2; rainbow_ema_periods <=100; rainbow_ema_periods=rainbow_ema_periods +2)

{

rainbow_line = EMA( rainbow_base_Vidya , ema_periods) ;

plot(rainbow_line, .....);

}

 

please verify that this loop is correct in your code ( that may be the minor bug you mention)

 

best regards.

Unicorn.

Share this post


Link to post
Share on other sites

Hold your horses Unicorn, one thing at a time.

 

I like to have the FantailVMA1 just the way it is, so it can be reused in other indicators.

 

I'll try to get a rainbow like thing coded today, however I'll start with a band and probably will eventually arrive at the ultimate rainbow.

 

We'll see how things work out. Resources are limited.

 

P.S.: Unfortunately I can't take your approach, it's a bit more complex on NT

Share this post


Link to post
Share on other sites
NT has already included Gain forex data... now, there is one parameter where I choose ninjatrader servers and get historical data (up too 2.5 years)... much better data also... really its a very friendly platform..

 

Take care Blu ¡¡ cheers Walter.

 

Thanks Walter, I've got it working now cheers

 

 

Blu-Ray

Share this post


Link to post
Share on other sites
now from that base line (red line) would the rainbow averages be 2 , 4 , 6 , 8 etc until 100 ? or what numbers exactly... thanks Walter.

 

That's correct Walter; in increments of 2

 

I have used the groups:

2-12 yellow

14-24 red

26-36 aqua

38-50 blue

52-60 brown

62-72 gold

74-84 cyan

86-96 violet

100 magenta

 

How is your rainbow?

 

Unicorn.

Share this post


Link to post
Share on other sites
That's correct Walter; in increments of 2

 

I have used the groups:

2-12 yellow

14-24 red

26-36 aqua

38-50 blue

52-60 brown

62-72 gold

74-84 cyan

86-96 violet

100 magenta

 

How is your rainbow?

 

Unicorn.

 

yes same increments of 2 all the way too 100... maybe the colors groups differ a little but no big deal...

 

Thanks Unicorn.. cheers Walter.

Share this post


Link to post
Share on other sites

 

Forgive the frustration.

 

Been swollowing too much crud for too long with MT4.

Sorry all for the tantrum.

I'm taking some time out and it might be permanent as far as MT4 goes.

 

 

So far Bruce, you created an F1 on vma`s... no frustration on that man ¡¡

 

would you be willing to migrate to Ninjatrader ? cheers Walter.

Share this post


Link to post
Share on other sites
For the inpatient, try this.

I'll code a much nicer looking version soon though, let me know of problems.

 

 

Very Nice Sparrow...¡¡ good base here... and yes I am impatient¡¡ :bang head: jejeje cheers Walter.

Share this post


Link to post
Share on other sites

Looks like we are gonna have it on NT ¡¡ thanks Sparrow ¡¡

 

here is a very first screenshot :

 

 

attachment.php?attachmentid=3735&stc=1&d=1193933952

 

 

once again collaboration wins ¡¡ I am so happy to be surrounded by great people with great actitudes ¡¡ cheers Walter.

5aa70e1853470_gettingthere2.thumb.png.9b2d4ea226c3f238e4867b0ce2ddecc2.png

Share this post


Link to post
Share on other sites
And I like that red Sparrow ¡¡ no needs to fool arround programing the rainbows colors ¡¡ cheers The Happy Chimp...

 

Gald you like walter. If anyone wants a rainbow, just add a few bands and play with the min/max values

 

I'm trying to make it visually more appealing. Almost there.

Share this post


Link to post
Share on other sites
Looks like we are gonna have it on NT ¡¡ thanks Sparrow ¡¡

 

Looking good!!

 

Now, Sparrow please explain the sequence of parameters (as posted on the chart) in fantailvma1 and vmaband.

 

11 ticks Walter ???

 

By the way Walter, you do need the first three bands to be differently colored, as they help with exits.

 

good work guys.

 

Unicorn.

Share this post


Link to post
Share on other sites

Parameters are:

 

Regular Faintail Parameters from which the Band will be calculated.

 

BandMin: lowest EMA period

BandMax: highest EMA period

BandIncrement: Increment value of the EMA Period, between BandMin and BandMax

 

Cheers

Share this post


Link to post
Share on other sites
Parameters are:

 

Regular Faintail Parameters from which the Band will be calculated.

 

BandMin: lowest EMA period

BandMax: highest EMA period

BandIncrement: Increment value of the EMA Period, between BandMin and BandMax

 

Cheers

 

Sparrow

 

will you please elaborate in the form:

 

signal vmar_2(ema_periods, adx_periods, stoch_periods);

and

rainbow base vmar_2(ema_periods, adx_periods, stoch_periods);

 

For example by watching Walter's chart, I have the impression that the number 100 (max ema) is displayed within the sequence of

ma_periods, adx_periods, stoch_periods.

 

This will create confusion, and perhaps a lot of posts of the type: "nice chart, what are the parameters of the adx_periods stoch_periods?" cluttering the thread.

 

By the way, why do you want to have the ema range displayed anyway?

 

keep up the good work.

Unicorn.

Share this post


Link to post
Share on other sites

Unicorn,

 

I can't say that I really got all what you are talking about.

 

What I am doing in the bands indicator is calculation a base VMA and put the result into an EMA with varying periods, I don't think you do anything different looking at your code

 

for (ema_periods=2; ema_periods <=12; ema_periods=ema_periods+2)

{

xVidya = EMA( Vidya , ema_periods) ;

Plot(xVidya,"", IIf( ema_periods==2, ParamColor("fast vidya color", colorYellow), Color1) , styleLine+styleThick+styleNoLabel);

}

 

If there is anything I didn't get, just tell me.

 

Cheers

Share this post


Link to post
Share on other sites
Looking good!!

 

 

11 ticks Walter ???

 

.

 

 

This ticks are very slow on forex compared to futures, so they would be the most near to a 55t on futures... cheers Walter.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.