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.

Blu-Ray

Various Indicators (Squeeze,2FastMa's,etc)

Recommended Posts

thank you but the problem is this indicators have extension "eld" not working in metatrader

 

No, the problem is that you didn't read the thread. If you did, you wouldn't be asking this.

Share this post


Link to post
Share on other sites
how i can install br_squeeze indicator in metatrader ?

 

thank you but the problem is this indicators have extension "eld" not working in metatrader

 

i am working on trade station so how are this indicators work with trade station and where i can download it?

 

 

.......... .......... L. O. L.

Share this post


Link to post
Share on other sites
thank you but the problem is this indicators have extension "eld" not working in metatrader

 

Gozila, the .ELD files work with Tradestation. The mq4 files work with Metatrader 4. Two different platforms-Two different sets of indicators.

Share this post


Link to post
Share on other sites

Following up on the last post, does anyone have a PBF_OSOB like indicator. I find the the highlights in the overbought/sold quite areas useful.

 

I attached a screen shot for additional clarification.

PBF_OSOB.thumb.jpg.a374d56fa67e7fa3353c9220c1bf8963.jpg

Share this post


Link to post
Share on other sites
Nice indicators

 

Do you have any of the indicators in amibroker ? Metastock ?

 

Thanks

 

have you read the thread? or tried a search?

Share this post


Link to post
Share on other sites
have you read the thread? or tried a search?

 

Yes, I read the thread, and I tried a search but I have not seen somebody posted for amibroker or metastock

 

May be by mistake I did not see it

 

I will try again

 

Thanks

Share this post


Link to post
Share on other sites

I've got a quick coding question from one of BlueRay's indicators (Fast2MA).

 

I'm trying to get it to fire off alerts only when the fast MA changes colour (in other words, when it goes from bullish to bearish).

 

I threw an alert in, but it alerts on every plot, not when the fast ma change colour. Any ideas?

 

Inputs: 

price(Close), 
length(13),
upColour(black), 
downColour(white);

Value1 = jtHMA(price, length);

Plot1(Value1, "FastMA");

{ Color criteria }
if (Value1 > Value1[1]) then 
SetPlotColor(1, upColour)
else if (Value1 < Value1[1]) then 
SetPlotColor(1, downColour);
alert;

Share this post


Link to post
Share on other sites
I've got a quick coding question from one of BlueRay's indicators (Fast2MA).

 

I'm trying to get it to fire off alerts only when the fast MA changes colour (in other words, when it goes from bullish to bearish).

 

I threw an alert in, but it alerts on every plot, not when the fast ma change colour. Any ideas?

 

Inputs: 

price(Close), 
length(13),
upColour(black), 
downColour(white);

Value1 = jtHMA(price, length);

Plot1(Value1, "FastMA");

{ Color criteria }
if (Value1 > Value1[1]) then 
SetPlotColor(1, upColour)
else if (Value1 < Value1[1]) then 
SetPlotColor(1, downColour);
alert;

 

 

 

try:

 

cross above

cross below

Edited by Tams

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.