Jump to content

FxNewbie

Members
  • Posts

    114
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    FxNewbie got a reaction from Traderbeauty in [Req] Advanced Ichimoku Course   
    I read this e-book and found it very useful. It's not the Advanced Ichimoku course, but it definately is worth a read for those not familiar with, or curious about Ichimoku Kinko Hyo. I like this indicator.
     
    http://www.forexwinners.net/Ichimoku-Winners.pdf
  2. Like
    FxNewbie reacted to mtuppers in (Req) market maker St-ve M-uro indicator and template   
    here is the file
     

    http://www.4shared.com/rar/s7l8KW9s/201330484118_73331.html
     
    note extabit.com the timer will recount if you are move to another tag or window.
  3. Like
    FxNewbie got a reaction from darter in [Req] Advanced Ichimoku Course   
    I read this e-book and found it very useful. It's not the Advanced Ichimoku course, but it definately is worth a read for those not familiar with, or curious about Ichimoku Kinko Hyo. I like this indicator.
     
    http://www.forexwinners.net/Ichimoku-Winners.pdf
  4. Like
    FxNewbie got a reaction from Stefco in [Req] Advanced Ichimoku Course   
    I read this e-book and found it very useful. It's not the Advanced Ichimoku course, but it definately is worth a read for those not familiar with, or curious about Ichimoku Kinko Hyo. I like this indicator.
     
    http://www.forexwinners.net/Ichimoku-Winners.pdf
  5. Like
    FxNewbie got a reaction from Freddie in I want to write something on the LH side of the chart   
    The code is from an indi called "MyNotes". Somewhere along the line someone had changed the file name (but not the indicator name) from MyNotes (ShortName = tChartPeriod + "MyNotes"). You already have it, so all you need to do is configure the corner, font, font size and desired message etc. to your liking.
     
    A tip you might find useful .... I have several of these with pre-prepared "standard" messages to alert me there is a X or Y trade open or something to look for. You need only save each indicator as (something like) Trade - Short Open MyNote.mq4, Trade - Long Open MyNote.mq4, Trade - Monitor MyNote.mq4 etc. I have six charts tiled on my screen so I scan status every little while and go away.
  6. Like
    FxNewbie got a reaction from Freddie in I want to write something on the LH side of the chart   
    I can't attach the file so here is the code. Open notepad (or any other text editor) and paste this into it. Then Save-As "Add_Notes.mq4" (not "Add_Notes.txt") in your Experts | Indicators folder. Then open the *.MQ4 file in MetaEditor and compile it. You'll need to re-start MT4 to make the compiled ex4 available for use. Then you can attach it to a chart and play with the settings to get what you want in the correct corner, font size, font colour etc. I Hope this is what you seek. (Clicking "Thanks" is always appreciated).
     
    //----
    #property indicator_chart_window
     
    extern int myChartX = 10 ;
    extern int myChartY = 100 ;
    extern int myCorner = 0 ;
    extern string myFont = "Arial Bold" ;
    extern int myFontSize = 18 ;
    extern color colorHead = DarkGray ;
    extern color colorComment = Orange ;
    extern int LineSpacing=10;
     
    extern string myNote01 = "note 1" ;
    extern string myNote02 = "note 2" ;
    extern string myNote03 = "note 3" ;
    extern string myNote04 = "" ;
    extern string myNote05 = "" ;
    extern string myNote06 = "" ;
    extern string myNote07 = "" ;
    extern string myNote08 = "" ;
    extern string myNote09 = "" ;
    extern string myNote10 = "note10" ;
     
    // add extra notes here-increment by 1 each note
    extern string myNote11 = "note11" ;
     
    int Space=0;
     
    string symbol, tChartPeriod, ShortName ;
     
    int glimit, digits, period, win, digits2, n, j, i, k, g;
     
    double point, point2, value ;
    //string lbl[15], lbl2[15];
     
     
     
    string Indicator_Name = "MyNotes:" ;
    int Objs = 0;
     
    //+------------------------------------------------------------------+
    int ind_bufferOp[] ;
    string shortName ;
    // int cpairsLenH;
    // int cpairsLenV;
    int shortLength;
    // int ctimesLen;
    // string cpairsh[];
    // string cpairsv[];
    // int aTimes[];
    // string addition = "";
     
    //+------------------------------------------------------------------+
    int init(){
     
    period = Period() ;
     
    tChartPeriod = TimeFrameToString(period) ;
    symbol = Symbol() ;
    digits = Digits ;
    point = Point ;
    ShortName = tChartPeriod + "MyNotes" ;
    win = 1 ;
     
    if(digits == 5 || digits == 3) { digits2 = 0 ; point = point * 10 ; } else { digits2 = 0 ; }
     
     
    shortName = ShortName ;
    shortLength = StringLen(shortName);
    IndicatorShortName(shortName);
     
    deinit() ;
    DoHelp () ;
     
     
    return(0);
    }
     
    //+------------------------------------------------------------------+
    int deinit()
    {
    //----
     
     
    //increment 11 by one for each note added
    for( int h = 0 ; h < 11 ; h++ )
    {
    ObjectDelete("aHelp"+h) ;
    }
     
    //----
    return(0);
    }
     
    //+------------------------------------------------------------------+
    int start()
    {
     
     
     
    WindowRedraw() ;
     
     
    return(0);
    }
    //+------------------------------------------------------------------+
    string TimeFrameToString(int tf)
    {
    string tfs;
    switch(tf) {
    case PERIOD_M1: tfs="M1" ; break;
    case PERIOD_M5: tfs="M5" ; break;
    case PERIOD_M15: tfs="M15" ; break;
    case PERIOD_M30: tfs="M30" ; break;
    case PERIOD_H1: tfs="H1" ; break;
    case PERIOD_H4: tfs="H4" ; break;
    case PERIOD_D1: tfs="D1" ; break;
    case PERIOD_W1: tfs="W1" ; break;
    case PERIOD_MN1: tfs="MN";
    }
    return(tfs);
    }
     
     
    //+------------------------------------------------------------------+
     
     
     
    void DoHelp()
    {
     
    //increment 11 by one
    string aHelp[11];
     
    //increment 11 by one
    ArrayResize(aHelp,11) ;
     
    aHelp[0] = myNote01 ;
    aHelp[1] = myNote02 ;
    aHelp[2] = myNote03 ;
    aHelp[3] = myNote04 ;
    aHelp[4] = myNote05 ;
    aHelp[5] = myNote06 ;
    aHelp[6] = myNote07 ;
    aHelp[7] = myNote08 ;
    aHelp[8] = myNote09 ;
    aHelp[9] = myNote10 ;
     
    //add lines here-increment each number by 1
    aHelp[10] = myNote11 ;
     
     
    //increment 11 by one for each note added
    for( int h = 0 ; h < 11 ; h++ ){
    int yAxis = myChartY + myFontSize + myFontSize*h;
    int xAxis = myChartX + 10 ;
     
    if(aHelp[h] != "") {
    drawComment("aHelp"+h,aHelp[h] , xAxis , yAxis , colorComment ) ; }
    }
     
    }
     
    //+------------------------------------------------------------------+
     
    void drawComment(string tLabel,string name, int xPos, int yPos ,color Color ){
    ObjectCreate(tLabel,23,0,Time[0],PRICE_CLOSE);
    ObjectSet(tLabel, OBJPROP_CORNER, myCorner);
    ObjectSet(tLabel,OBJPROP_XDISTANCE,xPos);
    ObjectSet(tLabel,OBJPROP_YDISTANCE,yPos+Space);
    ObjectSetText(tLabel,name,myFontSize,myFont,Color);
    Space+=LineSpacing;
    }
     
    //+------------------------------------------------------------------+
  7. Like
    FxNewbie got a reaction from Sesshoumaru in [Req] Advanced Ichimoku Course   
    I read this e-book and found it very useful. It's not the Advanced Ichimoku course, but it definately is worth a read for those not familiar with, or curious about Ichimoku Kinko Hyo. I like this indicator.
     
    http://www.forexwinners.net/Ichimoku-Winners.pdf
  8. Like
    FxNewbie got a reaction from ⭐ Tradeselect in [Req] Advanced Ichimoku Course   
    I read this e-book and found it very useful. It's not the Advanced Ichimoku course, but it definately is worth a read for those not familiar with, or curious about Ichimoku Kinko Hyo. I like this indicator.
     
    http://www.forexwinners.net/Ichimoku-Winners.pdf
  9. Like
    FxNewbie reacted to fxeasy5 in REQ : Fibonacci Miracle Secret Software   
    Here it is

    http://zalil.ru/34100443
  10. Like
    FxNewbie reacted to qubbit in QB-DataExporter – a control panel for working with data from MetaTrader 5   
    QB-DataExporter – a control panel for working with data from MetaTrader 5
     
    Hello everybody,
     
    We want to give you the opportunity to test free our new forex tool: QB-DataExporter.
    This tool can export Forex quotations and data about most utilized indicators. The export is in .csv format. They also can be imported in electronic trading platforms or in other programs, which permit the import of this kind of files.
    Data exporter offers you the possibility to export Forex quotations for the preferred symbol starting from 1 minute timeframe and reaching at 1 month timeframe. This tool also offers you 33 indicators grouped in four categories: Trend Indicators, Oscillators Volume Indicators, Bill Williams' Indicators.
    The data is offered with standard parameters, but the tool allows you to modify them in regard to your necessities. Having this king of information every trader builds new trading strategies.
    I recommend you to export data with Data exporter because utilizing specific programs you can analyze specific trading strategies and in time make them efficient.
    Here you can download http://goo.gl/QvvX6 free the trial version
    Screenshots:
    http://mt5toolbox.s3.amazonaws.com/DataExporter/DataExporter1.png
     
    http://mt5toolbox.s3.amazonaws.com/DataExporter/DataExporter2.png
     
     
     
    Here is the full list of indicators
     
     
    Accelerator Oscillator
    Accumulation/Distribution
    Average Directional Index
    ADX by Welles Wilder
    Adaptive Moving Average
    Awesome Oscillator
    Average True Range
    Bollinger Bands
    Bears Power
    Bulls Power
    Market Facilitation Index
    Commodity Channel Index
    Chaikin Oscillator
    Double Exponential Moving Average
    DeMarker
    Envelopes
    Force Index
    Moving Average
    MACD
    Money Flow Index
    Momentum
    On Balance Volume
    OsMA
    Relative Strength Index
    Relative Vigor Index
    Parabolic SAR
    Standard Deviation
    Stochastic Oscillator
    Triple Exponential Moving Average
    Triple Exponential Moving Averages Oscillator
    Variable Index Dynamic Average
    Volumes
    Williams' Percent Range
  11. Like
    FxNewbie reacted to gringoh in Average daily range per & session per pair   
    Hello,
     
    Here what I have after along week-end !!!
     
    http://img15.hostingpics.net/pics/640249Capture.jpg
     
    I will test it and share it with you guys.
    Best,
  12. Like
    FxNewbie got a reaction from hermes in [SHARE] 10 pips daily system   
    Just copy between the +-----------+ at the top and +-----------+ at the bottom. Then paste into any text editor like Notepad and "Save-As" RSI_MA Cross Histo.mq4 in your MT4 Experts | Indicators folder. Then load this file in MetaEditor (F4) and click the compile button. Restart MT4 and it's all done. Hope this helps. Try it. It is easy to do and a good learning experience for you.
  13. Like
    FxNewbie reacted to Sesshoumaru in @ REQ. pipsblasterpro @   
    h@@p://###.mediafire.c0m/?77mlt4ne4hn7l9y
  14. Like
    FxNewbie reacted to ⭐ FFRT in The Art of Trading   
    For Forex, I hear that Book titile - Bird Watching in Lion Country' is worth reading....
  15. Like
    FxNewbie reacted to pipsbuster in [REQ] Forex Striker   
    It's pretty amazing how psychotic some people got here without ever even trying this bot. Must be some sort of emotional instability. Here's my live account link: http://www.myfxbook.com/members/pipsbuster/fx-striker/414604/YIkM0gyMBeMw7SVEtgRi . Let's see if my trades match theirs on that ForexPeaceArmy statement.
  16. Like
    FxNewbie got a reaction from Fmfx in Help identify these Indicators   
    The line that changes from Green to White to Red looks like a "Hull Moving Average" indicator with "Levels" added.
    The indi that changes the native candle colour is one of several. One being "FxUltra"
    The one showing the trade operations looks like either a fancy Fibo indicator or one of MBFX indicators, likely the latter.
  17. Like
    FxNewbie got a reaction from hermes in Does't Repaint   
    (the language is indonesian)
  18. Like
    FxNewbie got a reaction from kapri65 in [REQ] ABC extension indicator   
    I wish I could help more but Elliot Waves never worked for me, even though I read lots of e-books and joined an EW dedicated site (forgot name). I tried another indicator called "EWPro" (don't have it anymore) for a while and it will plot all the letters and numbers. Maybe you can search on that string i.e. "EWPro". I wish I could help more but my EW interest phase was more than 2 years ago.
  19. Like
    FxNewbie got a reaction from kapri65 in [REQ] ABC extension indicator   
    There was a video about it but I guess that's disappeared now. There was no documentation with this but it will do as you ask. You have to fiddle with where to locate the various "legs" for the extensions to be perfomed. I always found Elliot Wave great in retrospect but never in the "now" moment.
     
    hxxp://[email protected]/file/qj0MzuLJ/ElliottWaveProphet.html
     
    (Change the "xx" "@" and "0" to get the URL)
  20. Like
    FxNewbie got a reaction from yogesheena in (req) change copy right and indicator name   
    check your inbox yogesheena
  21. Like
    FxNewbie reacted to Danny in Share - Power System !!!   
    Power System !
     
     
    http://i.imgur.com/dSE8n.gif
     
     
    Download : http://www.sendspace.com/file/hrop51
     
     
    :)
    Good Luck
    Danny
  22. Like
    FxNewbie reacted to hypernics in Post Your EX4 Here -Part 2   
    Decompiled, uploaded:
     

    http://www.4shared.com/zip/S5A6-5Wa/superdiv.html
  23. Like
    FxNewbie reacted to ⭐ izogrey in Struggling To Make Money - Found The Perfect Trading System   
    I have also an ideea which, maybe, can help you, help others and help the quality of this thread, too :)
     
    Maybe you can start with little preliminary information about your strategy and system, but this information should be something applicable. And then let give us, the others, a couple of days to apply this little chunk of information, and post our homeworks in this thread.
     
    After this first round, let begin the second one. You tell us the second chunk of information ( based or not on the first chunk ). Give us another couple of days to apply it, and we will post our results also in this thread.
     
    And repeat the steps, until the strategy and system are fully revealed.
     
    I enjoyed at maximum this type of "forum action" in some other thread. It's fun, civilized and everybody will learn something. Of course, the one which will practise will learn the most.:)
     
    And this way you are not very pressed in communicating with all of us. You have your time to prepare a certain stage of presentation, we have our time to apply something and learn.
     
    After this, of course, if the things are going in a healthy way, other communication channels can be developed ( Skype ... ).
  24. Like
    FxNewbie reacted to dannydon786 in Struggling To Make Money - Found The Perfect Trading System   
    Found the Perfect Trading System
     
    After struggling for 10 years with numerous sleepless nights..I finally got the perfect system....perfect system means ....(drawdown of 1 to 5 pips - 85% of the time......drawdown of 5 to 10 pips - 10% of the time...and in exceptional cases drawdown of 20 pips - 5% of the time) with a risk reward ratio of 1:10-100.......and finally a win ratio of 95-100%...mostly the 5% loss will be breakeven or loss of not more than 10 pips
     
    I understand the crux of making money in forex is confidence and exact entry point.......can you tell when the price is going is break the trendline....can you tell this 30 minutes before the price acutally comes and tounches the line...this is what is the perfect trading system...
     
    No indicators just naked trading so nothing to share, however, anyone struggling to make money...I can help you to recover all your losses in 2 weeks FREE (because I have a full-time job and US market opens at 3 am in the morning so some days I do not trade) ...just thinking how to go about doing this since the the trades need to be taken instantly to have the drawdown of less than 5 pips and since the trades are based on 15 minutes and holding time is average 30 -60 minutes.
  25. Like
    FxNewbie got a reaction from ⭐ Ormazd in An excellent leading indicator - can someone decompile and fix the code   
    Hello,
     
    This indicator is Sibbet's Demand Index. It is a leading indicator and is available in MQ5 and on several other platforms except MT4.
     
    http://minus.com/lP2j4jKNApxY2
     
    Even this copy was hard to find. It works very well except it needs to be refreshed to update. Is there some kind person that can decompile and examine the code to get it refreshing? It is worth the effort - it is a good leading indicator.
×
×
  • Create New...