From theory to practice. Part 2 - page 32

 
spiderman8811:

Are you sure that's where you were looking? Or maybe the answer is in a completely different area? Did you go to a bookshop?

Are you counting on 100% probability?

Matan, Statistics, TheoVer, machine learning, fractal geometry, multidimensional spaces of different types, arbitrage, finding a positive spread, currency pairs baskets, the price cup naturally and the mechanics of its work, a detailed study of tick aggregator, SB-based market behaviour modelling, and much more. I don't want to describe all adventures here =D

PS: And I didn't say I didn't find the answer.

 
CHINGIZ MUSTAFAEV:

Matan, Statistics, TheoVer, machine learning, fractal geometry, multidimensional spaces of various types, arbitrage, finding a positive spread, currency pair baskets, the price cup naturally and the mechanics of its operation, a detailed study of the tick aggregator, SB-based market behaviour modelling, and much more. I don't want to describe all adventures here =D

PS: And I didn't say I didn't find the answer.

from scratch ;)
 
Renat Akhtyamov:

the increment multiplied by the point value calculated at each point


The increment between adjacent bars? Or between the current one and the starting point?

point value calculated at each point - how is that?

my calculation

Profit = increment * (Lot * MarketInfo(Symbol_1,MODE_TICKVALUE)/(MarketInfo(Symbol_1,MODE_TICKSIZE)/MarketInfo(Symbol_1,MODE_POINT) )

p/c. That channel increment sum indicator is not on this topic at all.
 
Evgeniy Chumakov:


Increment between neighboring bars? Or between the current and the starting point?

the point value calculated at each point - how is that?

I calculated it this way

Profit = increment * (Lot * MarketInfo(Symbol_1,MODE_TICKVALUE)/(MarketInfo(Symbol_1,MODE_TICKSIZE)/MarketInfo(Symbol_1,MODE_POINT) )

p/c. That channel increment sum indicator is not on this topic at all.

the value of the tick by the formula should be calculated, because MarketInfo will return the current value

But the tick value on the bar at which the indicator is calculated

 
Renat Akhtyamov:

the value of the tick should be calculated using the formula, because MarketInfo will give the current

and you want the value of the tick to be where the incremental calculation is.


But I don't know how to calculate in a point.

 
Evgeniy Chumakov:


But this I don't know how to count at a point.

the lot is conditionally the same and for example equal to 1

you don't need it.

Profit = Increase(i) * TICKVALUE(i)
 
Renat Akhtyamov:

the lot is conventionally the same

it is not needed ?


Does buy sell count ? Suppose if increment is positive and conditional entry was = sell, then the profit is negative ?

 
Evgeniy Chumakov:


Does buy sell count ? Suppose if the increment is positive and the conditional entry was = sell, then the profit is negative ?

      dt0=(cl0-_cl0)/0.0001;
      dt1=(cl1-_cl1)/0.0001;
      dt2=(cl2-_cl2)/0.0001;
      tv0=TV("EURGBP", i, 100000.0, 0.0001);
      tv1=TV("EURUSD", i, 100000.0, 0.0001);
      tv2=TV("GBPUSD", i, 100000.0, 0.0001);
      s0[i]=NormalizeDouble(tv0*dt0,4);
      s1[i]=NormalizeDouble(tv1*dt1,4);
      s2[i]=NormalizeDouble(tv2*dt2,4);
      EQY[i]=s0[i]+s2[i]-s1[i];

first the balance indicator

only afterwards a strategy

The strategy (its result) is immediately visible to you on the indicator
 
CHINGIZ MUSTAFAEV:

Matan, Statistics, TheoVer, machine learning, fractal geometry, multidimensional spaces of various types, arbitrage, finding a positive spread, currency pair baskets, the price cup naturally and the mechanics of its operation, a detailed study of the tick aggregator, SB-based market behaviour modelling, and much more. I don't want to describe all adventures here =D

PS: And I didn't say I didn't find the answer.

Good adventures
 
Renat Akhtyamov:

      dt0=(cl0-_cl0)/0.0001;
      dt1=(cl1-_cl1)/0.0001;
      dt2=(cl2-_cl2)/0.0001;
      tv0=TV("EURGBP", i, 100000.0, 0.0001);
      tv1=TV("EURUSD", i, 100000.0, 0.0001);
      tv2=TV("GBPUSD", i, 100000.0, 0.0001);
      s0[i]=NormalizeDouble(tv0*dt0,4);
      s1[i]=NormalizeDouble(tv1*dt1,4);
      s2[i]=NormalizeDouble(tv2*dt2,4);
      EQY[i]=s0[i]+s2[i]-s1[i];

first the balance indicator

only afterwards a strategy

You can see the strategy (its result) immediately on the indicator


How can I get the value of a tick on the right bar in MT4? Or is it not possible?

Reason: