Arpit T
Я программист и трейдер
Arpit T
Added topic Point() causing error
Hello, I have a strange problem when I add Point() in code it causes buffers to disappear from candles for some candlesticks. When i remove point it works fine on all bar. How can i fix this
Arpit T
Added topic I want to check the Horizontal Line area
I want to use ObjectFind to check the price area where i can draw the horizontal line is not occupied by another object. I want to do it for an price area and not a particular price How can i do that
Arpit T
Added topic Bought a product, did not work
Hello I bought a product for my custom symbol this did not work on custom symbol I faced errors and notified the seller, at first seller replied me 3 days later that he would update program, the seller stopped responding me since then even if
Arpit T
Added topic Profile and SymbolSets
I want to load specific profile but with specific sets of symbol Is there any way to do that? I see that profile does not include saving of symbols
Arpit T
Added topic renko formula not matching with tradingview
I am trying to make Renko work like tradingview with same settings on both MT5 and tradingview but its not plotting same as tradingview, What modification would be needed for it? Link for tradingview renko
Arpit T
Added topic Seconds chart Indicators
If i want to load any indicator in 1 second chart, how can i do it? For e.g. ATR int iATR ( string symbol, //
Arpit T
Added topic How candlestick are formed using ticks?
In MqlTick we have bid ask and last price so I want to know how candlesticks are formed? using bid ask or last? If bid=0 and ask=0 an d last!=0 will it form a chart? if bid!=0 and ask!=0 and last!=0 how it will form using which array bid,ask or last
Arpit T
Added topic MqlTick always return TImeTradeServer() [SOLVED]
I am using MqlTick array and adding TimeGMT() to time array but it always print time on chart which is TimeTradeServer() When i print Array, It shows correct as you can see on screenshot but on chart window it always print wrong time. I am wondering
Arpit T
Added topic What is Tick data?
My broker provides many forms of info from its sever, I want to know which is Tick data and which is not? There is 1. The Aggregate Trade Streams which push market trade information that is aggregated for fills with same price and taking side
Arpit T
Added topic Converting Minute data into seconds
I am using MqlRates to get live feed of OHLC data where Time = 1minute from a broker server I am able to change time to 1 second but OHLC info is copied to candlestick as per 1 minute data from broker (broker's OPEN remains same until 1 minute ends
Arpit T
Added topic Slow Down Chart Scale
if (id== CHARTEVENT_MOUSE_WHEEL ) { //wheel up if (dparam> 0 ) { scale=( int ) ChartGetInteger ( ChartID (), CHART_SCALE );
Arpit T
Added topic A logical way of backtesting
I have a trend unfriendly (reversal) strategy which works well but fails well also. I have it coded by 90% but its in form of an indicator and not ready to run on strategy tester . If i want to know what caused failure, any optimization method
Arpit T
Added topic Validating Candlestick Patterns
If in 200 visible bars of history, there are 10 bullish engulf pattern, and in these 10 patterns, 5 are those patterns where low of bullish engulf is broken by close of a bear candle so how can I write a loop to show only those patterns where low is
Arpit T
Added topic Drawing Color Line
I want to DRAW_COLOR_LINE if for ( int i= 0 ; i> 100 ; i++) { if (open[i]>=close[i+ 1 ]) // continue this until the condition becomes false for multiple bars //DRAW COLOR LINE } Currently its being done using OBJ_TREND
Arpit T
Added topic What is Deal Volume?
I want to sort symbols by Volume but Sort by Deal Volume is just sorting symbols alphabetically so I am wondering what may cause this on custom symbol ? What info may be missing? On what basis deal volume searches to sort ? Real Volume or Tick
Arpit T
Added topic Making my EA think smart
My EA is dumb, it finds high low on chart then plot calculated levels as on screenshot you can see price jumped and made a big volume candle so my EA consider its a valid and plot levels very far away where price does not go most often, How can i
Arpit T
Added topic ChartEvent Clicks Filter
I want to filter normal clicks on chart with clicks on objects I am using this code but its not working if (id == CHARTEVENT_CLICK && id!= CHARTEVENT_OBJECT_CLICK ) { //print something } How can I filter in these two types of clicks
Arpit T
Added topic How do I add a trendline from start of bull and end of bull bars
#property indicator_separate_window #property indicator_buffers 4 #property indicator_plots 1 #property strict //--- plot #property indicator_label1 "N" #property indicator_type1 DRAW_NONE #property
Arpit T
Added topic Suggest me Money/Risk Management method
I dont have any problem in technical analysis on 1minute chart but i trade with big size stop loss, which has following problem 1. Sometime it takes hours and waste my time as price just hovers between my stop loss and entry area 2. As per
Arpit T
Added topic How do I code to detect a breakout candle?
What is best way to detect any candlestick which breakouts any level for example as shown on screenshot. Please post the logic
: