Bitcoin and everything associated with it. The home of cryptomaniacs and their adversaries. - page 113

 
"Long words only frustrate me" (c)
 
started recording the chart on the longest situation, see what happens in the morning
 
hrenfx:

Simple marketmaking is evident (screenshot - November). If the subscribers have real accounts, overflow from their accounts is also likely with proper implementation.

Of course, the overflow was not done on purpose. Sometimes it happens as a side bonus of stupid realization of signal services.

And here is indirect evidence that hamsters-subscribers are milked through the signal service:

P.S. The developers are unlikely to do anything to remove this vulnerability inherent in any current signalling service.

 

no arbitrage was detected overnight

the chart was built without taking into account the coms, 1000 - asc==bid

i.e. if the line of the chart is less than 994, it will be an arbitrage situation when the coms will be covered by the profit from the trade.

the chart was built according to the formula:

   Ask_NMCBTC=MarketInfo("NMCBTC",MODE_ASK);
   Bid_NMCUSD=MarketInfo("NMCUSD",MODE_BID);
   Bid_Sell=Bid_NMCUSD/Ask_NMCBTC;

   Bid_LTCBTC=MarketInfo("LTCBTC",MODE_BID);
   Ask_LTCUSD=MarketInfo("LTCUSD",MODE_ASK);
   Ask_Buy=Bid_LTCBTC/Ask_LTCUSD;
   
Bid_=1000.0+(Ask_Buy-Bid_Sell); - значение писалось в чарт
Files:
5EqvBTCUSD1.zip  20 kb
 
look no further
 
sanyooooook:

no arbitrage was detected overnight

the chart was built without taking into account the coms, 1000 - asc==bid

i.e. if the line of the chart is less than 994, it will be an arbitrage situation when the coms will be covered by the profit from the trade.

the chart was based on a formula:

the calculation is wrong. the error is in the formula.

   Ask_NMCBTC=MarketInfo("NMCBTC",MODE_ASK);
   Bid_NMCUSD=MarketInfo("NMCUSD",MODE_BID);
   Bid_Sell=Bid_NMCUSD/Ask_NMCBTC;

   Bid_LTCBTC=MarketInfo("LTCBTC",MODE_BID);
   Ask_LTCUSD=MarketInfo("LTCUSD",MODE_ASK);
   Ask_Buy=Bid_LTCBTC/Ask_LTCUSD;  // Должно быть Ask_LTCUSD/Bid_LTCBTC;
   
Bid_=1000.0+(Ask_Buy-Bid_Sell); - значение писалось в чарт
// This is if I understand the idea correctly
 
MetaDriver:

The calculation is wrong. It's in the formula.

Yes, you're right, it is, and it's corrected in the code below.

{
   double  Ask_NMCBTC=MarketInfo("NMCBTC",MODE_ASK)+0.005*MarketInfo("NMCBTC",MODE_ASK);
   double  Bid_NMCUSD=MarketInfo("NMCUSD",MODE_BID)-0.005*MarketInfo("NMCUSD",MODE_BID);
   double Bid_Sell=Bid_NMCUSD/Ask_NMCBTC;

   double Bid_LTCBTC=MarketInfo("LTCBTC",MODE_BID)-0.005*MarketInfo("LTCBTC",MODE_ASK);
   double Ask_LTCUSD=MarketInfo("LTCUSD",MODE_ASK)+0.005*MarketInfo("LTCUSD",MODE_ASK);
   double Ask_Buy=Bid_LTCBTC/Ask_LTCUSD;
   double Bid_=1000.0+(Ask_Buy-Bid_Sell);
   while(!IsStopped())
   {
   RefreshRates();
        if ( HistoryHandle < 0 ) continue;//(-1);
   Ask_NMCBTC=MarketInfo("NMCBTC",MODE_ASK);
   Bid_NMCUSD=MarketInfo("NMCUSD",MODE_BID);
   Bid_Sell=Bid_NMCUSD/Ask_NMCBTC;

   Bid_LTCBTC=MarketInfo("LTCBTC",MODE_BID);
   Ask_LTCUSD=MarketInfo("LTCUSD",MODE_ASK);
   Ask_Buy=Ask_LTCUSD/Bid_LTCBTC;
   Comment(Bid_);
        if(1000.0+(Ask_Buy-Bid_Sell)==Bid_)
        {
           Sleep(1);
 

When I corrected the bug I fixed it inside the loop, but not outside the loop, so I added the formula outside the loop to the post

also the outside of the loop with the comsa is taken into account

 
sanyooooook:

When I corrected the bug I fixed it inside the loop, but not outside the loop, so I added the formula outside the loop to the post

also the outside of the loop with the comsa is taken into account

ok
 

Why 0.005 and not 0.0025?

Комиссия за сделку – 0.25%(Комиссия снижена на период промо акции с 1 ноября по 31 декабря 2013 года) при открытии сделки комиссия берется сразу за открытие и закрытие сделки

Reason: