GithubHelp home page GithubHelp logo

phmatray / talibstandard Goto Github PK

View Code? Open in Web Editor NEW
70.0 5.0 22.0 3.88 MB

TaLib in C# for .NET Standard

License: GNU General Public License v3.0

C# 100.00%
technical-analysis dotnet-standard talib

talibstandard's Introduction

Hello ๐Ÿ‘‹, I'm Philippe Matray!

AI doesn't change the game, it just changes the way we play.

I'm Philippe Matray, a Technical Solutions Architect and Coach with a deep passion for innovative technologies and architectures. I guide teams in developing effective solutions and relish in the challenge of turning complex problems into simple, scalable solutions. When I'm not immersed in the tech world, you can find me playing my favorite musical pieces.

๐Ÿงฐ 2023 Technology Stack


๐ŸŽฏ My Focus

I am particularly excited about emerging technologies such as Prompt Engineering, DevOps, open source, blockchain, cross-platform and progressive web applications. I utilize my skills in solution architecture and coaching to guide development teams to build high quality, effective solutions.

As a firm believer in the value of methodologies like SCRUM, DDD, TDD, and BDD, as well as Clean Code and Hexagonal architectures, I relish in teaching and instilling these principles into developers' practices to help them reach their full potential.

๐ŸŒฑ How I Work

A developer is first and foremost a creative person... and a creative person's ideas don't necessarily arrive during office hours. ๐Ÿ˜ That's why I prefer working remotely, be it day or night, always fueled by caffeine. โ˜•

๐Ÿ’ก My Motto

"A day without learning is a day lost."

๐Ÿ“ MBTI Personality

I'm an INTP (Logician) - my approach to solutions is deeply analytical and I thrive on challenging the status quo.

๐Ÿ“ซ How to reach me

You can find me on LinkedIn, or send me an Email. Feel free to reach out!

โš™๏ธ ๐—ฆ๐˜๐—ฎ๐˜๐˜€

phmatray's github stats

talibstandard's People

Contributors

dependabot[bot] avatar matasx avatar phmatray avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

talibstandard's Issues

Not sure, but seems a bug to me

return new CandleIndicatorResult(Success, outBegIdx, outNBElement, outInteger);

I'm trying identify patterns right after market opens, in 5 minutes candles. For instance, when I run GetLookback() for Candle3WhiteSoldiers, I got 12, so What I understand is that I have to have 12 5 minute candles to be able to identify this pattern. In other words, I can only identify it after 60 minutes, and I wanted to identify it in the first 20 to 30 minutes. Is it possible to change it to a shorter interval?

The bug I think exists is:

If we don't have enough candles to identify the pattern, it shouldn't return a success message here, but an error message, am I right?

    // Identify the minimum number of price bar needed to calculate at least one output.
    int lookbackTotal = GetLookback();

    // Move up the start index if there is not enough initial data.
    if (startIdx < lookbackTotal)
    {
        startIdx = lookbackTotal;
    }

    // Make sure there is still something to evaluate.
    if (startIdx > endIdx)
    {
        return new CandleIndicatorResult(**Success**, outBegIdx, outNBElement, outInteger);
    }

If I'm wrong, I apologize, I'm a little rusty with programming.
Thanks, and nice job

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.