fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tailung
    3. Posts
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 17
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by Tailung

    • RE: Re: Variables not read ! [solved (but with a workaround)]

      It is solved: I declared the variables as int and that doesn't work
      When I declare the variables as a doubles it works fine.

      Strange that I have to use a double for an integer value. Since doubles uses more memory than integers. That might be a bug

      For now I will use doubles all over the place to avoid this problem.

      posted in Questions & Answers
      T
      Tailung
    • RE: Whats wrong with this ea

      I made a simple ea but it doesn't trade it returns: ordersend error 3
      https://fxdreema.com/shared/5oWPrapye

      Can somebody take a look at it?

      posted in Questions & Answers
      T
      Tailung
    • RE: Re: Variables not read ! [solved (but with a workaround)]

      Its simple
      I have some text objects. I place them on the map with x y coords.
      When I fill i the xy coords with regular numbers it works fine. When i replace the numbers for y with a variable, only the first respects the variable and the rest just of the objects don't anymore, no matter what I do. I think its a bug. Yesterday I experimented with variables and text-object placement it is repeated over and over again.
      I want to use variables for easy adjustments etc.
      The example still counts. Put it one the chart.
      In oninit the objects are created the variable "TopStart=50" should place the 3 objects at 50 pixels from the top. (All on the same line but that doesn't matter for now.) But it doesn't. When I do use integer numbers for Y it works just fine. But I don't want to use numbers I want to use variables
      Place it on the chart and you see some text object on the chart. first on accepts the variable for y the next one doesn't. it places the text on the top of the screen. the third also.
      the fourth object should be discarded.

      posted in Questions & Answers
      T
      Tailung
    • RE: More comlex manual and support stuff for newcomers

      Link to documentation says: 404 document not found

      posted in Bug Reports
      T
      Tailung
    • RE: Re: Variables not read ! [solved (but with a workaround)]

      I'm in the process of building a menu out of textobjects.

      To align te text I use a variable.
      In this example de variable Topstart has the value 50

      When I use it to orient text objects onto the map
      they all should be on the same line/height but they don't. Only the first object respects the variable al the others don't!! I don't get is when I put 50 in it works just fine.

      This is what I have so far:

      https://fxdreema.com/shared/IW5MvgoU

      posted in Questions & Answers
      T
      Tailung
    • RE: Panel question

      I dunno

      posted in Questions & Answers
      T
      Tailung
    • RE: Feature Request

      Nice nice... But then also a seperated dedicated forum section, were one can talk about and share projects. please 😉

      posted in Questions & Answers
      T
      Tailung
    • RE: Feature Request

      I want a feature to share projects amongst members. In Forum and or in builder.

      posted in Questions & Answers
      T
      Tailung
    • RE: Panel question

      Well in metatrader there is an example indicator code in: indicators > examples > simplePanel > SimplePanel
      This is all done with the new oop funtionality. To complicated for me right now for the moment. But thats the kinda panel I need or even a floating one.

      I just go ahead and try I geuss. It has been 4 years since I last used fx dreema.

      What I do miss in the forum and in fx dreema is the abbility to share projects amongst member. I think you could easily implent that If you wanted to. But that is another story.

      And just revived an old 2013 topic of mine.
      Thanks for now and I give it a go.

      posted in Questions & Answers
      T
      Tailung
    • RE: Panel question

      I want to make a Visual Trade Setup and Trade Manager.
      In order the create setup, by means of trendline, I have to toggle the ea between setup mode and trade mode. I was thinking about a panel with radio buttons and/ or checkboxes.
      Is a panel possible with FxDreema?
      If not how would one make a ea toggle between differant modes ?

      Thnx

      posted in Questions & Answers
      T
      Tailung
    • RE: Feature Request

      I would like to open a topic where one can drop his/her feature request, for our so beloved FxDreema tool. Maybe FxDreema will pick this up. Feel free to drop your feature request here.

      Feature Request:

      Save As
      (Function where one could save the project with a different name, one would actually have a copy)

      posted in Questions & Answers
      T
      Tailung
    • RE: Ma of RSI indicator

      Well this works perfect. Indicator does exactly what it should do and FxDreema doen't complain. usefull

      posted in Questions & Answers
      T
      Tailung
    • RE: Ma of RSI indicator

      So I found that this is possible in MQL. I searched documentation and I tinkered with the custom indicator MACD.mq4, that comes standard with MT4.
      Here is what I have come up with: MARSI.mq4 see attachment. Hmmmm. Can't Upload *.mq4 Then copy/past

      It shows: RSI in separate window.
      It shows: MA of RSI in that window
      It shows: 2 levels

      But how do I use this custom indicator in FxDreema ?

      //+------------------------------------------------------------------+
      //| Custom MARSI.mq4 |
      //| Copyright © 2004, MetaQuotes Software Corp. |
      //| http://www.metaquotes.net/ |
      //+------------------------------------------------------------------+
      #property copyright "Copyright © 2004, MetaQuotes Software Corp."
      #property link "http://www.metaquotes.net/"
      //---- indicator settings
      #property indicator_separate_window
      #property indicator_buffers 2
      #property indicator_color1 DodgerBlue
      #property indicator_color2 Red
      #property indicator_width1 2
      #property indicator_level1 45
      #property indicator_level2 55
      //---- indicator parameters
      extern int RSI_Period=10;
      extern int MA_Period=10;
      //---- indicator buffers
      double RSI_Buffer[];
      double MA_Buffer[];

      //+------------------------------------------------------------------+
      //| Custom indicator initialization function |
      //+------------------------------------------------------------------+
      int init()
      {
      //---- drawing settings
      SetIndexStyle(0,DRAW_LINE);
      SetIndexStyle(1,DRAW_LINE);
      SetIndexDrawBegin(1,MA_Period);
      IndicatorDigits(Digits);

      //---- indicator buffers mapping
      SetIndexBuffer(0,RSI_Buffer);
      SetIndexBuffer(1,MA_Buffer);
      //---- name for DataWindow and indicator subwindow label
      IndicatorShortName("RSI("+RSI_Period+")MA("+MA_Period+")");
      SetIndexLabel(0,"RSI");
      SetIndexLabel(1,"MA on RSI");
      //---- initialization done
      return(0);
      }
      //+------------------------------------------------------------------+
      //| RSI and Ma on RSI |
      //+------------------------------------------------------------------+
      int start()
      {
      int limit;
      int counted_bars=IndicatorCounted();
      //---- last counted bar will be recounted
      if(counted_bars>0) counted_bars--;
      limit=Bars-counted_bars;
      //---- macd counted in the 1-st buffer
      for(int i=0; i<limit; i++)
      RSI_Buffer*= iRSI(NULL, 0, RSI_Period, PRICE_CLOSE, i);
      //---- signal line counted in the 2-nd buffer
      for(i=0; i<limit; i++)
      MA_Buffer*=iMAOnArray(RSI_Buffer,Bars,MA_Period,0,MODE_SMA,i);
      //---- done
      return(0);
      }
      //+------------------------------------------------------------------+

      posted in Questions & Answers
      T
      Tailung
    • RE: Ma of RSI indicator

      In MT4 you can drop a MA on the RSI indicator window.
      Is there a way where I can do that with fxDreema?

      posted in Questions & Answers
      T
      Tailung
    • RE: Right click blocks the settings screen [SOLVED]

      Solved.

      enable javascript advanced: allow script to disable/replace context menu.

      posted in Questions & Answers
      T
      Tailung
    • RE: Right click blocks the settings screen [SOLVED]

      OK I see. I have plugins on my firefox18 that make my web experience more convenient. I look into that.

      posted in Questions & Answers
      T
      Tailung
    • RE: Right click blocks the settings screen [SOLVED]

      When I do right click to edit the settings of a block I get the standard windows rightclick menu, that is blocking the settings. Does anyone recognize this and is there a solution?
      (Online version)

      Thanks Tailung

      posted in Questions & Answers
      T
      Tailung
    • 1 / 1