Thierry Ramaniraka
Thierry Ramaniraka
  • Information
6+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Friends 2
Thierry Ramaniraka
Added topic Master Candle's Trendlines until it's broken
Hello all, i am writing a "Master Candle" indicator (on H1). Master candles are highlighted, but now, i need to draw high and low trend lines until the price break these high or low. Then the trendline are stopped to be drawn on the (H1) candle
Thierry Ramaniraka
Added topic Each day High and Low Values of Index indicator.
Hello, I am working on an index indicator based from this one : https://www.mql5.com/ru/code/9780 I really need to get the HIGH and LOW's values (from the subwindow) of each day then i will be able to draw boxes (with OBJ_RECTANGLE). I know how to
Thierry Ramaniraka
Added topic Colored DRAW_HISTOGRAM according Bull or Bear Candle
Hello every one, I am working on a indicator based on this one : https://www.mql5.com/ru/code/9780 I am modifying it in histogram version by changing : " DRAW_LINE " with " DRAW_HISTOGRAM " . My problem is that my code, drawing all histogram bars in
Thierry Ramaniraka
Added topic Changing width scale according zoom scale
Hello everyone, I desire to auto scale the width of an histogram buffer according the zoom scale's candle. My problem is it only works when i change the time frame. I want it to be directly after zooming in/out. I have put the function in : OnInit +
Thierry Ramaniraka
Added topic Manually CreateObject with custom predifined name.
Hello there, I have created an indicator wich dysplays oscillators : What I desire to do :  When I create a trend line manually  by clicking the mt4 button I need the trend line to have a custom predifined name like : "My_Predefined_Name"
Thierry Ramaniraka
Added topic Stop / kill calculating a function.
Hello again, I need to stop calculating a function because of CPU. I created a BUTTON. TRUE state => I call + dysplay my_function. FALSE state => I hide the dysplayed grapical objects and indications. (but the function is still
Thierry Ramaniraka
Added topic un-needed lines on Stochastic
Hello there, I am working on a indicator in which i could switch between oscillators indicators ; and i am implementing the indicators but i have a problem with the stochastic . Undesired lines are drawn ; i need them  not to be drawn BUT with
Thierry Ramaniraka
Added topic Hide Object by name
Hello all, I have an idea :  - hide/show (not delete) objects on the graph (channels, rectangles, lines...etc)  with a same prefix (My_Prefix_Object1, My_Prefix_Object2, My_Prefix_Object3...etc). My question : Is it possible to do it
Thierry Ramaniraka
Added topic Alert only work on mouse move.
Hi there, I have created this simple alert function : double Alert_Higher_Level =   ObjectGet ( "Alert_Lines_Higher" , OBJPROP_PRICE1 );
Thierry Ramaniraka
Added topic CHART_AUTOSCROLL according the mouse wheel
Hello all, I am trying to put the "CHART_AUTOSCROL" parameter false...when i use the wheel of the mouse. I succed with a simple click              if (id== CHARTEVENT_CLICK )
Thierry Ramaniraka
Added topic Select unhidden Object / Color unhidden Object
Hi there, there is a way to select - by code - unhidden object ? If not, is there a way to change the color of all unhidden object ? Regards
Thierry Ramaniraka
Added topic buttons states according each other
Hi, I am trying to link buttons states according each other. When I press (true) a button, all the others are unpressed (false). bool TLR_Button_1_State       = ObjectGetInteger ( 0 , "TLR_Button_1"
Thierry Ramaniraka
Added topic 15 min after datetime
Hi there, I need to find time after a "datetime". Exactly 15 min after a by-hand-pre-defined datetime. The datetime is not a multiple of "15 min". It begins 1 min before the previous hour and it ends 15 min after. here in the image below what i need
Thierry Ramaniraka
Added topic Display immediatly from OnCalculate (?)
Hello, Here is my goal : Immediatly hide/show Moving Averages after click on button. But, now, it always waits a tick, as the function is placed in "OnCalculate" . How can I do it please ? Here is my code : int OnInit () {   
Thierry Ramaniraka
Added topic Force subwindow to height in pixels.
Hi there, I need you to know if it's possible to force a subwindow pixel height (and not percent height). I see this documentation, but, there is no example to do what I want to. https://docs.mql4.com/chart_operations/chartgetinteger Can someone help
Thierry Ramaniraka
Added topic Button code creating mt4 bug.
Hello there, I am creating a  buttons panel, so far is so god, but whent i am trying to aatach zoom function to my zoom buttons, I get this bug : The timeframe buttons do not released, and i cannot erase a template, when i want to save it. Here
Thierry Ramaniraka
Added topic deinitialization function
Hello, As I constantly feed my MQL knowledge, I ask you the difference between theese 2 "deinitialization functions " : int deinit() //or void OnDeinit ( const int reason) It seems that both do the job. What is the "better way" to deinitialize
Thierry Ramaniraka
Added topic Start working with "#property strict"
Heelo, I want to start working with " #property strict". I found this usefull idndicator on forex factory. When i put "#property strict", i get some warnings. What is the problem
Thierry Ramaniraka
Added topic One "physical" bar befor date time.
Hello again, I need your help (always...) I am trying to draw VLINEs one bar (what ever the time frame is switched) before a date time (in my case, begining of each week). datetime t = iTime ( NULL , PERIOD_W1 ,i);
Thierry Ramaniraka
Added topic true/false bool BUTTON on chart
Hello there, I have an indicator that plot some right price labels by : extern bool My_Labels= true ; //Hide or show labels And, i ask you if is it possible to control the "true/false" state by creating (in the same indicator) an external button on
12