Python IVI is a Python-based interpretation of the Interchangeable Virtual Instrument standard from the IVI foundation. Python IVI can use Python VXI-11, Python USBTMC, PyVISA, pySerial and linux-gpib ...
以下の本から時系列データの部分を勉強しましたので、少しここに書こうと思います。※アフェリエイトはしていません。でもこの本はすごくいい本なので、これで知識を増やす、勉強するのはいいことだと思います。(アフェリエイトではなく、自分の ...
I- Why such a project ? This project was a brave idea, and an innovative one, it comes to solve the problem of people who has difficulties dealing with other languages besides their natal language. It ...
今回はテクニカル指数の代表ともいえる移動平均線(MA)をプロットまで行きました。 コード内のdata["MA20"] = data["Close"].rolling(20).mean() rolling(20)の数値は期間20の平均を使用するものなので5に変更すれば短期、200に変更すれば長期での線も描画できます。