Forex
Google
New signals service!

Go Back   Forex Trading > Programming > Metatrader Programming


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack (3) Thread Tools Display Modes
  #91 (permalink)  
Old 06-05-2008, 05:52 PM
Member
 
Join Date: Aug 2006
Posts: 97
bwilhite is on a distinguished road
Hello all,

I'll keep this brief. I'm looking for a programmer to join our team to help with maintaining/expanding some of our proprietary code. Preferably this person would be experienced in trading, MQL, and .NET (C# preferred). However, we would also consider working with someone that is proficient in C++ and/or Java. We cannot offer a salary or anything like that at the moment, because our revenues aren't high enough (we do have revenues ). What we're really looking for is someone who is ambitious, can think "outside of the box," and is looking to continue developing our business with us. If you are interested at all, please PM me.

Regards,
Brandon Wilhite

Bamboo Trading
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #92 (permalink)  
Old 06-12-2008, 04:00 AM
mqlcode's Avatar
Junior Member
 
Join Date: May 2008
Posts: 2
mqlcode is on a distinguished road
I give professional MQL services

Hope you describe detail what your need and what your rule for indicator / EA

Quote:
Originally Posted by matrixebiz View Post
Looking for a coder to help me out on some code that doesn't seem to be working. Please PM me

Thanks
__________________
MQLcode
Preferred forum i was there :
ForexFactory Forex-TSD FOREXall ExpertAdvisor IndoExpert IndoFX-Trader
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #93 (permalink)  
Old 06-15-2008, 09:48 PM
Member
 
Join Date: Mar 2008
Posts: 30
chiefraven is on a distinguished road
Any MT4 programmers here knows Easylanguage for Tradestation?

If so, could you help me code this QQE code into easylanguage for Tradestation?

//+------------------------------------------------------------------+
//| Qualitative Quantitative Estimation Indicator for Metatrader 4 |
//| Copyright © 2006Roman Ignatov |
//| mailto:roman.ignatov@gmail.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 200 Roman Ignatov"
#property link "mailto:roman.ignatov@gmail.com"

#property indicator_separate_window

#property indicator_buffers 2

#property indicator_color1 Navy
#property indicator_style1 STYLE_SOLID
#property indicator_width1 2

#property indicator_color2 Navy
#property indicator_style2 STYLE_DOT


extern int SF = 5;

int RSI_Period = 14;
int Wilders_Period;
int StartBar;

double TrLevelSlow[];
double AtrRsi[];
double MaAtrRsi[];
double Rsi[];
double RsiMa[];

int init()
{
Wilders_Period = RSI_Period * 2 - 1;
if (Wilders_Period < SF)
StartBar = SF;
else
StartBar = Wilders_Period;

IndicatorBuffers(6);
SetIndexBuffer(0, RsiMa);
SetIndexStyle(0, DRAW_LINE, STYLE_SOLID, 2);
SetIndexLabel(0, "Value 1");
SetIndexDrawBegin(0, StartBar);
SetIndexStyle(1, DRAW_LINE, STYLE_DOT);
SetIndexBuffer(1, TrLevelSlow);
SetIndexLabel(1, "Value 2");
SetIndexDrawBegin(1, StartBar);
SetIndexBuffer(2, AtrRsi);
SetIndexBuffer(3, MaAtrRsi);
SetIndexBuffer(4, Rsi);
IndicatorShortName(StringConcatenate("QQE(", SF, ")"));
return(0);
}


int start()
{
int counted, i;
double rsi0, rsi1, dar, tr, dv;

if(Bars <= StartBar)
return (0);

counted = IndicatorCounted();
if(counted < 1)
for(i = Bars - StartBar; i < Bars; i++)
{
TrLevelSlow[i] = 0.0;
AtrRsi[i] = 0.0;
MaAtrRsi[i] = 0.0;
Rsi[i] = 0.0;
RsiMa[i] = 0.0;
}

counted = Bars - counted - 1;

for (i = counted; i >= 0; i--)
Rsi[i] = iRSI(NULL, 0, RSI_Period, PRICE_CLOSE, i);

for (i = counted; i >= 0; i--)
{
RsiMa[i] = iMAOnArray(Rsi, 0, SF, 0, MODE_EMA, i);
AtrRsi[i] = MathAbs(RsiMa[i + 1] - RsiMa[i]);
}

for (i = counted; i >= 0; i--)
MaAtrRsi[i] = iMAOnArray(AtrRsi, 0, Wilders_Period, 0, MODE_EMA, i);

i = counted + 1;
tr = TrLevelSlow[i];
rsi1 = iMAOnArray(Rsi, 0, SF, 0, MODE_EMA, i);
while (i > 0)
{
i--;
rsi0 = iMAOnArray(Rsi, 0, SF, 0, MODE_EMA, i);
dar = iMAOnArray(MaAtrRsi, 0, Wilders_Period, 0, MODE_EMA, i) * 4.236;

dv = tr;
if (rsi0 < tr)
{
tr = rsi0 + dar;
if (rsi1 < dv)
if (tr > dv)
tr = dv;
}
else if (rsi0 > tr)
{
tr = rsi0 - dar;
if (rsi1 > dv)
if (tr < dv)
tr = dv;
}
TrLevelSlow[i] = tr;
rsi1 = rsi0;
}

return(0);
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #94 (permalink)  
Old 06-15-2008, 11:02 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 802
TheRumpledOne is an unknown quantity at this point
I know TradeStation and eSignal.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #95 (permalink)  
Old 06-15-2008, 11:09 PM
Member
 
Join Date: Mar 2008
Posts: 30
chiefraven is on a distinguished road
would you mind turning this qqe indicator into an easylanguage version? =D hehe

would very much appreciate it
=D
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #96 (permalink)  
Old 06-15-2008, 11:31 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 802
TheRumpledOne is an unknown quantity at this point
Perhaps....

Inbox is full of requests...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #97 (permalink)  
Old 06-15-2008, 11:47 PM
Member
 
Join Date: Mar 2008
Posts: 30
chiefraven is on a distinguished road
ahah... you must be good.

this QQE indicator is pretty damn useful... that's why i really want to test it on stocks and futures. =D

if you could somehow convert this into a tradestation indicator, that would just be awesome !!! =D
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #98 (permalink)  
Old 06-16-2008, 03:30 AM
Senior Member
 
Join Date: Feb 2007
Posts: 947
FerruFx is on a distinguished road
Quote:
Originally Posted by chiefraven View Post
ahah... you must be good.

this QQE indicator is pretty damn useful... that's why i really want to test it on stocks and futures. =D

if you could somehow convert this into a tradestation indicator, that would just be awesome !!! =D
Maybe a small donation will help TheRumpledOne to take decision to code it

FerruFx
__________________
THE HEART of FOREX & THE PROBABILITY METER - Trade with 100% confidence and ... Stress Less!!!
Coding services: Experts Advisors, indicators, alerts, etc ... more info by PM
NEW: video presentation of the Probability Meter ... 24hrs action on the website
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #99 (permalink)  
Old 06-16-2008, 03:58 AM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 802
TheRumpledOne is an unknown quantity at this point
Good one, FerruFX.

Problem is, if I do code it and make it a THANK YOU INDICATOR, then I can only show it in my commercial thread or I will GET BANNED.

Then I might get accused of making money off somebody else and GET BANNED.

It's like playing chess... STALEMATE!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #100 (permalink)  
Old 06-16-2008, 05:01 AM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 802
TheRumpledOne is an unknown quantity at this point
Quote:
Originally Posted by chiefraven View Post
would you mind turning this qqe indicator into an easylanguage version? =D hehe

would very much appreciate it
=D
Could you post a chart of what it is supposed to look like?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
effilang

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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/metatrader-programming/10501-coder-developer-i-will-pay.html
Posted By For Type Date
Wave_AutoTrendLines - Trading Jan tools @ New Trading :- MT4 indicator Post #25 Refback 02-16-2008 07:37 PM
3_Level_ZZ_Semafor (indicator (( Forex )) for Foreign @ exchange Sep MT4) Post #25 Refback 01-27-2008 10:01 AM
To coder/developer: I will pay for this | Stop Collection Agency Scams This thread Pingback 11-02-2007 07:33 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Reversal indicator, need coder hidethereal Indicators - Metatrader 4 1 03-30-2007 03:12 PM
coder help needed teldon Setup Questions 1 12-19-2006 12:21 PM
Coder Needed! Sinar FX Expert Advisors - Metatrader 4 1 08-30-2006 03:42 AM


All times are GMT. The time now is 12:09 PM.



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