Giter Site home page Giter Site logo

Comments (2)

zhouaini528 avatar zhouaini528 commented on August 17, 2024

` Route::get('/bybit', function () { $key = env('BYBIT_KEY'); $secret = env('BYBIT_SECRET');

$bybit = new \Lin\Bybit\BybitLinear($key, $secret);
// dd($bybit);

try {
    $result = $bybit->privates()->getPositionList([
        'symbol' => 'BTCUSDT',
    ]);
    // $result = $bybit->privates()->postOrderCreate([
    //     //'order_link_id'=>'xxxxxxxxxxxxxx',
    //     'side' => 'Buy',
    //     'symbol' => 'BTCUSDT',
    //     'order_type' => 'Limit',
    //     'qty' => '1',
    //     'price' => '49000',
    //     'time_in_force' => 'GoodTillCancel',
    //     'reduce_only' => 'false',
    //     'close_on_trigger' => 'false',
    // ]);

    dump($result);
} catch (\Exception $e) {
    dd($e->getMessage());
}

}); `

why am i getting rate limited, is there something wrong with what im doing?

Use the V5 API

$bybit=new BybitV5($key,$secret);

//You can set special needs
$bybit->setOptions([
    //Set the request timeout to 60 seconds by default
    'timeout'=>10,

    'headers'=>[
        //X-Referer or Referer
        //X-BAPI-RECV-WINDOW
        //cdn-request-id
        'X-BAPI-RECV-WINDOW'=>'6000',
    ]
]);


try {
    $result=$bybit->order()->postCreate([
        'category'=>'spot',
        'symbol'=>'BTCUSDT',
        'side'=>'buy',
        'orderType'=>'limit',
        'qty'=>'1',
        'price'=>'1000',

        //'orderLinkId'=>'xxxxxxxxxxx',
    ]);
    print_r($result);
}catch (\Exception $e){
    print_r($e->getMessage());
}

from bybit-php.

vinayakdev avatar vinayakdev commented on August 17, 2024

thanks, that works fine

from bybit-php.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.