Giter Site home page Giter Site logo

Kline summary about binance-rs HOT 6 CLOSED

 avatar commented on June 15, 2024
Kline summary

from binance-rs.

Comments (6)

wisespace-io avatar wisespace-io commented on June 15, 2024

@AnsterDev Is not enough just to add the Serialize, Deserialize macros?

#[derive(Debug, Serialize, Deserialize, Clone)]
pub enum KlineSummaries {    
   AllKlineSummaries(Vec<KlineSummary>),
}

from binance-rs.

 avatar commented on June 15, 2024

@wisespace-io I have done the placing of the macros, but it appears when I modify the repository in git, the changes are not reflected in main.rs, it is as if it were the original repository, and it was blocked from changes, do you know how to solve it?

from binance-rs.

wisespace-io avatar wisespace-io commented on June 15, 2024

@AnsterDev Not sure what's going on in your side. Anyway, I added the macros and did not get any error. Please check the latest release 0.13.3

from binance-rs.

 avatar commented on June 15, 2024

the macros already appear in the new update, but this appears:

 match market.get_klines(symbol, interval, limit, None, None){
        Ok(answer) => {
            let deserialized  = binance::model::KlineSummaries::deserialize(answer);
            println!("{:#?}",  deserialized);
        }
        Err(e) => println!("Error: {:?}", e),
    }
------------------------------------------------------------------------

the trait bound `binance::model::KlineSummaries: serde::Deserializer<'_>` is not satisfied

the trait `serde::Deserializer<'_>` is not implemented for `binance::model::KlineSummaries`

note: required by `serde::Deserialize::deserialize`rustc(E0277)
main.rs(285, 77): the trait `serde::Deserializer<'_>` is not implemented for `binance::model::KlineSummaries`

@wisespace-io am I doing the deserialization wrong?

from binance-rs.

wisespace-io avatar wisespace-io commented on June 15, 2024

@AnsterDev There is a misunderstand here. You do not need to deserializer the answer, because you already get a KlineSummary, it is not a string, it is an object. I updated the example.

from binance-rs.

wisespace-io avatar wisespace-io commented on June 15, 2024
 // last 10 5min klines (candlesticks) for a symbol:
 match market.get_klines("BNBETH", "5m", 10, None, None) {
     Ok(klines) => {   
         match klines {
             binance::model::KlineSummaries::AllKlineSummaries(klines) => {
                 let kline: KlineSummary = klines[0].clone(); // You need to iterate over the klines
                 println!(
                     "Open: {}, High: {}, Low: {}",
                     kline.open, kline.high, kline.low
                 )
             }
         }
     },
     Err(e) => println!("Error: {}", e),
 }

from binance-rs.

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.