Jump to content

mrb123

Members
  • Posts

    16
  • Joined

  • Last visited

Posts posted by mrb123

  1. Hehe, Craven, I just love your style!! It's been a long time that I have witnessed a good old fashioned flame-war...however I do believe that there are serious probs with the marketing & performance of this indicator.

    All along I have been testing systems and I do think that after many years of hard work there truly is a fairly decent system that can make us a regular income...I will prepare a screen shot and share, but probably in a separate thread...wouldn't want to hijack a perfectly good flame-war, LOL

     

    LOL, now he starts typing perfect English!!! HaAAAAAA!!

     

    Hehehe, I have to take it all back now.

     

    Robert M. Daley=orinin

     

    I swear, please never cease to amaze me.

     

    They do silly little things that give themselves away!!

     

    Yup, you guessed it, I'm the creepiest, in your words, in Perfect ENGLISH!!

     

    It's too bad, you were doing so well with your broken English posts, LOL.

     

    I did miss the post. Your narrow mind couldn't comprehend the meaning behind that.

     

    So let me explain, in layman's terms. I made a joke out of the three stooges, but I didn't cleary read the post, hence I missed the post. Now, it seems you missed my post, so I'll give it to you to your face.

     

    You are a really creepy fellow, and I'm not being funny, I am dead serious. Ewwwwww... gross and disgusting. Repelling, appaulling.

     

    Are you finished playing games now? You're about to have one of the mods check the Reverse-Ips on you on the different logins and find out the truth about you. Creep.

  2. My understanding is that all micro/mini lots are not directed straight through the market. Recently I had a prolific trading EA, and in 2 days I had at least 12 "trade context is busy" errors, slipping me at least a pip on each order. I was asked to send in my trade logs, which I did. Guess what? No reply as to why there were these errors.

    All I am saying is BE CAREFUL and don't always believe the hype. I believe they are better than most brokers, but I still have to be wary of suspicious trade execution

     

    Optimise Performance with ThinkForex No Dealing Desk Forex Execution

     

    ThinkForex is one of the first ECN brokers to offer low latency high speed trading on Metatrader 4 trading platform. ThinkForex has developed technology that allows us to provide fast execution with no delay because the ThinkForex Metatrader servers are located in the same server block as our liquidity providers. Add all of that up with tight, market driven, spreads and you have the perfect trading environment for your automated/manual trading needs.

     

    ThinkForex execution and our price feed speaks for itself, compare our price feed to any other MetaTrader 4 broker on the market today and price will always update first ! By trading through an ECN, a currency trader generally benefits from greater price transparency, faster processing, increased liquidity and more availability in the marketplace. The banks also reduce their costs as there is less manual effort. Please try yourself before making any assumptions :)

  3. True ECN broker with mini/micro accounts?

     

    I am presently with Thinkforex and one has to be careful.

    I don't see how one can have true ECN trades with less than $1,000 in your account, and trade mini/micro lots.

    I am trading mini's and micro's and constantly have delays and 'trade context is busy' errors.

    Like most other brokers, full lots are directed for straight-through processing; however smaller lot sizes are probably handled in-house, which means "dealing desk" to me.

  4. Hi group; I have this indi that I am stuck with. It displayed lines when direction changed up or down. I am trying to just plot an arrow up & down at the point when direction changes from up to down instead. Can someone fix it for me? I am stuck as to how to finish this. Thanks!

    Here is some of the code:

     

    #property copyright "MT4"

    #property link ""

     

    #property indicator_chart_window

    #property indicator_buffers 2

    #property indicator_color1 Blue

    #property indicator_color2 Red

     

    extern int period = 50;

    extern int method = 3;

    extern int price = 0;

    double g_ibuf_88[];

    double g_ibuf_92[];

    double g_ibuf_96[];

     

    double CrossUp[];

    double CrossDown[];

    extern int Arrow_Distance = 10;

     

    int init() {

    IndicatorBuffers(3);

    SetIndexBuffer(0, g_ibuf_88);

    SetIndexBuffer(1, g_ibuf_92);

    SetIndexBuffer(2, g_ibuf_96);

    ArraySetAsSeries(g_ibuf_96, TRUE);

    //---- indicators

    SetIndexStyle(0, DRAW_ARROW, EMPTY);

    SetIndexArrow(0, 233);

    SetIndexBuffer(0, CrossUp);

    SetIndexStyle(1, DRAW_ARROW, EMPTY);

    SetIndexArrow(1, 234);

    SetIndexBuffer(1, CrossDown);

    //----

     

    // SetIndexStyle(0, DRAW_LINE, STYLE_SOLID, 2);

    // SetIndexStyle(1, DRAW_LINE, STYLE_SOLID, 2);

    IndicatorShortName("FIP_ Arrow(" + period + ")");

    return (0);

    }

     

    int deinit() {

    return (0);

    }

     

    double WMA(int ai_0, int a_period_4) {

    return (iMA(NULL, 0, a_period_4, 0, method, price, ai_0));

    }

     

    int start() {

    double lda_0[];

    double lda_4[];

    int l_ind_counted_8 = IndicatorCounted();

    if (l_ind_counted_8 < 0) return (-1);

    int li_12 = 0;

    int l_period_16 = MathSqrt(period);

    int li_20 = Bars - l_ind_counted_8 + period + 1;

    if (li_20 > Bars) li_20 = Bars;

    ArrayResize(lda_0, li_20);

    ArraySetAsSeries(lda_0, TRUE);

    ArrayResize(lda_4, li_20);

    ArraySetAsSeries(lda_4, TRUE);

    for (li_12 = 0; li_12 < li_20; li_12++) lda_0[li_12] = 2.0 * WMA(li_12, period / 2) - WMA(li_12, period);

    for (li_12 = 0; li_12 < li_20 - period; li_12++) g_ibuf_96[li_12] = iMAOnArray(lda_0, 0, l_period_16, 0, method, li_12);

    for (li_12 = li_20 - period; li_12 >= 0; li_12--) {

    lda_4[li_12] = lda_4[li_12 + 1];

    if (g_ibuf_96[li_12] > g_ibuf_96[li_12 + 1]) lda_4[li_12] = 1;

    if (g_ibuf_96[li_12] < g_ibuf_96[li_12 + 1]) lda_4[li_12] = -1;

     

    if (lda_4[li_12] > 0.0) {

    g_ibuf_88[li_12] = g_ibuf_96[li_12];

    if (lda_4[li_12 + 1] < 0.0) g_ibuf_88[li_12 + 1] = g_ibuf_96[li_12 + 1]- Arrow_Distance * Point;

    g_ibuf_92[li_12] = EMPTY_VALUE;

    } else {

    if (lda_4[li_12] < 0.0) {

    g_ibuf_92[li_12] = g_ibuf_96[li_12];

    if (lda_4[li_12 + 1] > 0.0) g_ibuf_92[li_12 + 1] = g_ibuf_96[li_12 + 1]+ Arrow_Distance * Point;

    g_ibuf_88[li_12] = EMPTY_VALUE;

    }

    }

    }

    return (0);

    }

  5. I also have been watching this website for a little while, and I have found that the log files on a computer system can really hog the resources. I have a little program that runs a batch file that searches out the hard drive and deletes all log file entries generated both in Metatrader as well as the whole hard drive. I will upload it in anybody wants it. Can anyone tell me which site is best to use? I have never uploaded anything before.

    Thanks

     

     

    I figured it out...here is a download link: http://www.4shared.com/file/7aBiUP8w/Deletelogfiles.html

  6. I also have been watching this website for a little while, and I have found that the log files on a computer system can really hog the resources. I have a little program that runs a batch file that searches out the hard drive and deletes all log file entries generated both in Metatrader as well as the whole hard drive. I will upload it in anybody wants it. Can anyone tell me which site is best to use? I have never uploaded anything before.

    Thanks

×
×
  • Create New...