Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 11-21-2006, 07:43 PM
Member
 
Join Date: Oct 2006
Posts: 73
junglelion is on a distinguished road
Indicator Programmer Wanted.

I need someone to program an indicator for me, I will provide the logic to be used, the person has to just code it.

Better still if you can provide an IDE for writing indicators that would be best.

Thanks in Advance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #2 (permalink)  
Old 11-21-2006, 08:03 PM
Member
 
Join Date: Oct 2006
Posts: 73
junglelion is on a distinguished road
i need help in developing an indicator, would you please help with the programming aspect ?

This javascript code calculates fibonacci levels

function retup(form) {
A = form.A.value * 1;
B = form.B.value * 1;

dist=Math.round((B-A)*Math.pow(10,4))/10000;
ret1=Math.round((B-0.236*dist)*Math.pow(10,4))/10000;
ret2=Math.round((B-0.382*dist)*Math.pow(10,4))/10000;
ret3=Math.round((B-0.5*dist)*Math.pow(10,4))/10000;
ret4=Math.round((B-0.618*dist)*Math.pow(10,4))/10000;
ret5=Math.round((B-0.786*dist)*Math.pow(10,4))/10000;
ret6=Math.round((B-1.382*dist)*Math.pow(10,4))/10000;
ret7=Math.round((B-1.618*dist)*Math.pow(10,4))/10000;
}

where A is PRICE_LOW and B is PRICE_HIGH

could you design the basic for me, where it draws a line automatically at each level and labels it.

It automatically calculates the fib levels on any timeframe based on DAY_HIGH and DAY_LOW, external input can be whether today = 0 or yesterday = 1

So if today = 0 then day_high and day_low of today is used, and if today = 1 [yesterday] then day_high and day_low of yesterday is used. for the same timeframe on which the indic is being used. M1, M5, M15, M30, H1, H4, D1, W1, MN
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #3 (permalink)  
Old 11-21-2006, 09:20 PM
Member
 
Join Date: Oct 2006
Posts: 73
junglelion is on a distinguished road
So far so good, got the fib calculation going, now how do I draw the line and label it ??

Can anyone guide ??
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #4 (permalink)  
Old 11-21-2006, 09:40 PM
Nicholishen's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 531
Nicholishen is on a distinguished road
Check out this one by Kalenzo
Attached Files
File Type: mq4 FiboPiv_v2.mq4 (4.6 KB, 93 views)
__________________
"Anyone who has never made a mistake has never tried anything new." -Albert Einstein
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #5 (permalink)  
Old 11-21-2006, 11:37 PM
Member
 
Join Date: Oct 2006
Posts: 73
junglelion is on a distinguished road
Quote:
Originally Posted by Nicholishen
Check out this one by Kalenzo
Okay I tried FiboPiv , but somehow it was not giving accurate levels so I went in and wrote my own and tested it.

On every time frame it automatically draws fibo and damn accurate at that.


Now since I have a working fibo indicator which draws the line on its own, next step is to try and convert this into an ea - fibo based ea.


Any ideas on this would be most appreciated.

oh by the way i used the drawLine and drawLabel functions from FiboPivot indi.


Like for D1 GBP/USD it automatically selected 9152 and 8834 and I used to think it was 9178 and made awful mistakes, LOL
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #6 (permalink)  
Old 11-21-2006, 11:43 PM
cubesteak's Avatar
Senior Member
 
Join Date: Jul 2006
Location: Southern California
Posts: 160
cubesteak is on a distinguished road
Quote:
Originally Posted by junglelion
Okay I tried FiboPiv , but somehow it was not giving accurate levels so I went in and wrote my own and tested it.

On every time frame it automatically draws fibo and damn accurate at that.


Now since I have a working fibo indicator which draws the line on its own, next step is to try and convert this into an ea - fibo based ea.


Any ideas on this would be most appreciated.

oh by the way i used the drawLine and drawLabel functions from FiboPivot indi.


Like for D1 GBP/USD it automatically selected 9152 and 8834 and I used to think it was 9178 and made awful mistakes, LOL
Let me know if you need help / tips - I'd be glad to assist.

PM me if you'd like...

-CS
__________________

Join the MultiBroker M1 and TICK Data Bank Project

Imagine 90-99% modeling quality in MT4 back testing with free data from your broker!
Come see our current list of covered brokers.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #7 (permalink)  
Old 11-21-2006, 11:57 PM
Member
 
Join Date: Oct 2006
Posts: 73
junglelion is on a distinguished road
Quote:
Originally Posted by cubesteak
Let me know if you need help / tips - I'd be glad to assist.

PM me if you'd like...

-CS
I need to know the logic to be used for buy and sell.

Lets say when price moves from 0.0 level to 23.6 level then buy with target at 61.8 or a little lower if and only if it bounces from 61.8, but if it goes through then hold target till next level and check again for a bounce, if it does not then move target to next level.

Same way for sell positions, at every level check for bounce, if it does not happen then move target to next level.

if bounce happens close trade.

Suggest.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #8 (permalink)  
Old 11-22-2006, 07:07 AM
cubesteak's Avatar
Senior Member
 
Join Date: Jul 2006
Location: Southern California
Posts: 160
cubesteak is on a distinguished road
Quote:
Originally Posted by junglelion
I need to know the logic to be used for buy and sell.

Lets say when price moves from 0.0 level to 23.6 level then buy with target at 61.8 or a little lower if and only if it bounces from 61.8, but if it goes through then hold target till next level and check again for a bounce, if it does not then move target to next level.

Same way for sell positions, at every level check for bounce, if it does not happen then move target to next level.

if bounce happens close trade.

Suggest.
Ahh.. OK - well if you already have a working indicator, which it sounds like you do, you can simply use:

double ObjectGet( string name, int index)
So, if your actual object for 23.6 level is called "236 Level", then you can get the price value from that object by doing:

double TriggerPrice = ObjectGet("236 Level",OBJPROP_PRICE1);

double Target618Price = ObjectGet("618 Level",OBJPROP_PRICE1);

etc..

now you need an IF statement that adjusts the target upwards as it breaks through levels, or one that closes out as price bounces off.

in pseudo code for a buy:

if (OldPrice == Target618Price + 5 pips) && (CurrentPrice == Target618Price - 10 pips) then Close order /// was over and seems to have bounced

else if (OldPrice == Target618Price + 5 pips) && (CurrentPrice == Target618Price + 10 pips) then Move SL to TriggerPrice and start monitoring the next level up.

Does that help?

-CS
__________________

Join the MultiBroker M1 and TICK Data Bank Project

Imagine 90-99% modeling quality in MT4 back testing with free data from your broker!
Come see our current list of covered brokers.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #9 (permalink)  
Old 11-22-2006, 09:27 AM
Member
 
Join Date: Oct 2006
Posts: 73
junglelion is on a distinguished road
If This Statement is to be believed then This Indicator has done its job well.

I used only and only this indicator to open a trade on daily charts, the amazing aspect is that this one adjusts itself on all time frames, and adjusts itself according to prevailing market conditions.

It gives trades specific to the moment, so if you are scalping based on 1 Minute it will give you targets specific to 1 Minute.

Amazing !!!


I just had an idea on making something, but never figured out that it will DOUBLE MY ACCOUNT in 16 hours !!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #10 (permalink)  
Old 11-22-2006, 09:51 AM
Diam0nd's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 235
Diam0nd is on a distinguished road
Quote:
Originally Posted by junglelion
If This Statement is to be believed then This Indicator has done its job well.

I used only and only this indicator to open a trade on daily charts, the amazing aspect is that this one adjusts itself on all time frames, and adjusts itself according to prevailing market conditions.

It gives trades specific to the moment, so if you are scalping based on 1 Minute it will give you targets specific to 1 Minute.

Amazing !!!


I just had an idea on making something, but never figured out that it will DOUBLE MY ACCOUNT in 16 hours !!!
1. I am a bit blank on how to use this particular indicator.
2. When you remove the indicator from a chart, it DOES NOT remove the objects it created. Just so you know.



Cheers,
Diam0nd




I LOVE
__________________
- MetaTrader v4.00 Build 225 (10 Jul 2008)
- MetaTrader MultiTerminal v4.00 Build 213 (20 Mar 2008)
- Always use the latest (^ABOVE^) MetaQuotes products, saves a lot of nerves. What's new.
"METAQUOTES FOR LIFE!"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Help! MA on Indicator wanted Tickwatcher Indicators - Metatrader 4 8 01-13-2008 03:25 AM
Wanted: reversal and time indicator daraknor Indicators - Metatrader 4 0 03-23-2007 07:12 AM
indicator wanted! markt Indicators - Metatrader 4 1 02-22-2007 03:37 AM
Let's code this simple indicator....need programmer canados Indicators - Metatrader 4 3 02-19-2007 03:53 PM


All times are GMT. The time now is 02:28 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.