Errors, bugs, questions - page 3052

 
Nikolai Semko:

In my opinion, this radar chart lacks a parameter such as the ratio of purchases to downloaded demos.
Quite a valuable parameter to understand the seller's level. One will have this parameter at 1% and another at 10%.

ZZY its more indirectly possible to roughly calculate from available data.
For example from your statistics this parameter is higher than 13-20% - this is a very steep result.
And the most famous code generator in KB has 1.5- 3% :))

A lot of things you can display graphically, imho it's convenient, but as implemented - all at the level of speculation "what would it mean".

ZS: in Market is a mess, a bunch of products where the discussion of the product one actor (the same author), scrolled through 5 pages, well, nothing learned about the product, well, except that the author constantly raising the price - have time to buy at the old price, imho, looks flea market with questionable products to me - put a new price, dropped all the reviews and discussions, then there would not be such primitive manipulation with the search for naive buyers

 
Nikolai Semko:

from registering as a seller.

@fxsaber is a novice at all.

But Yusuf has +8 years of "experience".

)

 
Igor Makanu:

A lot of things can be displayed graphically, imho it is convenient, but the way they are implemented now - all at the level of guessing "what it would mean".

ZS: in Market a mess, a bunch of products where the discussion of the product one actor (he is also the author), flipped through 5 pages, well, that's nothing learned about the product, well, except that the author constantly raising the price - have time to buy at the old price, imho, looks flea market with questionable products, to me so - put a new price, got all the reviews and discussions, then it would not be such primitive manipulations to find naive buyers

Well yes, the problems are certainly there.
I've been feeling a lack of fresh creative blood in MQ lately.
Especially since I recently got my programming degree and started working in my specialty.

 
Nikolai Semko:

In my opinion, this radar chart lacks a parameter such as the ratio of purchases to downloaded demos.
Quite a valuable parameter to understand the seller's level. One would have this parameter at 1% and the other at 10%.

Moreover, it can be indirectly calculated from available data.
For example from your statistics this parameter above 13-20% is a very steep result.
And the most famous code generator in KB has 1.5- 3% :))

I hope that the new changes in the rules will not affect the general trend.

But I would like some important selling points to be heard by the Administration.

 
Mikhail Dovbakh:

But Yusuf's "experience" is +8 years old.

)

Well Yusuf is a really experienced man.
Another question is what experience.
Probably his main skill is stoking fires that go out, drenched in water...
 
Nikolai Semko:
well Yusuf really is an experienced man.
Another question is what experience.
Probably his main skill is making stewing fires drenched in water...

I won't argue about the relevance of this indicator. But it hurts @fxsaber's feelings... )

fxsaber
fxsaber
  • 2021.07.01
  • www.mql5.com
Профиль трейдера
 

fxsaber has been banned 5 times for life.

His merits from past lives do not count.

 
Slava:

fxsaber has been banned 5 times for life.

His merits from past lives do not count.

Is that a rap?
 
Slava:

fxsaber has been banned 5 times for life.

His merits from past lives don't count.

I don't know.
I don't know about past lives.
But in this reincarnation, I think it's delicacy itself. :))
 
Slava:

fxsaber has been banned 5 times for life.

His merits from past lives do not count.

so all the bugs found by @fxsaber in the terminal/MQL you will now bring back in the next release? ;)



again, a question about indicators:

can i store in an indicator buffer iong without losing data?

i.e. i want to:

int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
{
   union LongToDouble
   {
      ulong L;
      double D;
   } LD;
   
   LD.L = 0xAAAAAAAAAAAA;
   Label1Buffer[i] = LD.D;

and further read indicator buffer from EA via iCustom() converting it to long?

what will happen if i have NaN ?

can the data be lost when converting back to long with the help of union in the EA?

Reason: