Alexandre Borela
Alexandre Borela
4.9 (179)
  • Information
8+ years
experience
14
products
3
demo versions
0
jobs
0
signals
0
subscribers
Alexandre Borela Published product

If you like this project, leave a 5 star review. Often times we are using brokers that are outside of the GMT-0 timezone, this not only complicates things, but, it can make seeing when a trading session starts a bit more difficult than it should. This indicator allows you to set a timezone offset it will draw a vertical line for the: Day. Week. Month. Quarter. year

Alexandre Borela Published product
Reviews: 3
FREE

If you like this project, leave a 5 star review. Often times we are using brokers that are outside of the GMT-0 timezone, this not only complicates things, but, it can make seeing when a trading session starts a bit more difficult than it should. This indicator allows you to set a timezone offset it will draw a vertical line for the: Day. Week. Month. Quarter. year

Alexandre Borela Published product

If you like this project, leave a 5 star review. Follow on instagram: borelatech As institutionals trade large volumes, it is not uncommon for them to try to defend their position at specific percentage levels. These levels will serve as a natural support and resistance which you can use either to enter a trade or be aware of possible dangers against your position. This oscillator will show you the percentage variation for the: Day. Week. Month. Quarter. Year. In a subwindow where you trace your

Alexandre Borela Published product
Reviews: 1
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech As institutionals trade large volumes, it is not uncommon for them to try to defend their position at specific percentage levels. These levels will serve as a natural support and resistance which you can use either to enter a trade or be aware of possible dangers against your position. This oscillator will show you the percentage variation for the: Day. Week. Month. Quarter. Year. In a subwindow where you trace your

Alexandre Borela
Added topic Bug: Base class disables type checking
This one caught me off guard when dealing with generic iterators, the minimum code to reproduce the bug: #property copyright "" #property link "" #property version "1.00" #property strict #property indicator_chart_window #property indicator_buffers 0
Alexandre Borela Published product
Reviews: 3
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech As institutionals trade large volumes, it is not uncommon for them to try to defend their position at specific percentage levels. These levels will serve as a natural support and resistance which you can use either to enter a trade or be aware of possible dangers against your position. An example of a common used percentages are 0.25% and 0.50% on EURUSD for the week, you can see this example on the screenshots

Alexandre Borela Published product
Reviews: 11
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech As institutionals trade large volumes, it is not uncommon for them to try to defend their position at specific percentage levels. These levels will serve as a natural support and resistance which you can use either to enter a trade or be aware of possible dangers against your position. An example of a common used percentages are 0.25% and 0.50% on EURUSD for the week, you can see this example on the screenshots

Alexandre Borela Published product
Reviews: 1
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech Trading large volumes requires us to look at multiple instruments/charts to find new opportunities, this indicator will help you by plotting specific levels by the multiple of a number or its suffix and update them automatically as the price changes, a task that would otherwise be tedious. For example, on GBPUSD, you could have 4 instances of the indicator on the chart to plot: Each 0.01 intervals with line length

Alexandre Borela Published product
Reviews: 10
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech This indicator draws a compact countdown clock of the time remaning for the candle to close and: It can be positioned on any corner of the chart; Multiple timeframes; You can add it to an indicator window by dragging it from the MT5 navigator. Different color when the candle has 10 seconds left to close. Customizable colors for better integration with the chart

Alexandre Borela Published product
Reviews: 42
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech Volume-weighted average price is the ratio of the value traded to total volume traded over a particular time horizon. It is a measure of the average price at which a stock is traded over the trading horizon. VWAP is often used as a trading benchmark by investors who aim to be as passive as possible in their execution. With this indicator you will be able to draw the VWAP for the: Current Day. Current Week. Current

Alexandre Borela Published product

If you like this project, leave a 5 star review. Follow on instagram: borelatech This indicator draws the open, high, low and closing prices for the specified period and it can be adjusted for a specific timezone. These are important levels looked by many institutional and professional traders and can be useful for you to know the places where they might be more active. The available periods are: Previous Day. Previous Week. Previous Month. Previous Quarter. Previous year. Or: Current Day

Alexandre Borela Published product
Reviews: 39
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech This indicator draws the open, high, low and closing prices for the specified period and it can be adjusted for a specific timezone. These are important levels looked by many institutional and professional traders and can be useful for you to know the places where they might be more active. The available periods are: Previous Day. Previous Week. Previous Month. Previous Quarter. Previous year. Or: Current Day

Alexandre Borela Published product
Reviews: 31
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech Volume-weighted average price is the ratio of the value traded to total volume traded over a particular time horizon. It is a measure of the average price at which a stock is traded over the trading horizon. VWAP is often used as a trading benchmark by investors who aim to be as passive as possible in their execution. With this indicator you will be able to draw the VWAP for the: Current Day. Current Week. Current

Alexandre Borela
Added topic Bug: Returned function pointer can't be called
#property version   "1.00" #property indicator_chart_window typedef void (*Callback)( int i); void PrintNumber( int i) {    Print (i); } Callback getCallback() {    return PrintNumber; } int OnInit () {
Alexandre Borela
Added topic Bug: ChartWindowFind always returns 0
If called without any arguments, ChartWindowFind will always return 0 even if the indicator is dragged to a subwindow. I compiled the following code and dragged the indicator into the subwindow of the volume indicator : #property version   
Alexandre Borela Published product
Reviews: 21
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech This indicator draws a compact countdown clock of the time remaning for the candle to close and: It can be positioned on any corner of the chart; Multiple timeframes; You can add it to an indicator window by dragging it from the MT5 navigator. Different color when the candle has 10 seconds left to close. Customizable colors for better integration with the chart

Alexandre Borela
Added topic Bug: Const method + Copy constructor
This code reproduces the bug: class C { public :        C () {}        C (C const &) {}    C foo() const {      return C();    } }; int OnInit ()
Alexandre Borela Published product
Reviews: 2
FREE

If you like this project, leave a 5 star review. Follow on instagram: borelatech Trading large volumes requires us to look at multiple instruments/charts to find new opportunities, this indicator will help you by plotting specific levels by the multiple of a number or its suffix and update them automatically as the price changes, a task that would otherwise be tedious. For example, on GBPUSD, you could have 4 instances of the indicator on the chart to plot: Each 0.01 intervals with line length

Alexandre Borela
Added topic Return reference, throwing exceptions
Suggestion that would massively improve the MQL5 language. Return reference. Currently you can't return a reference, adding this feature would enable full support for overloading the operators, for example, the index operator[] which would allow us
Alexandre Borela
Published code Moving Average Ex
Moving average with some extra features.
12