Iblis Lin

Results 224 comments of Iblis Lin

ah, could you send a PR for it?

```diff diff --git a/src/utilities.jl b/src/utilities.jl index 844d746..edc2fc0 100644 --- a/src/utilities.jl +++ b/src/utilities.jl @@ -92,19 +92,16 @@ function lagfill(ta::TimeArray, r1::Integer, fill::AbstractFloat) _lta_values = values(_lta) _lta_values[1:r1] .= fill - TimeArray(timestamp(ta), _lta_values, colnames(ta))...

And maybe we need to fix the colname of `dpo` ```diff diff --git a/src/momentum.jl b/src/momentum.jl index d73f151..a42f931 100644 --- a/src/momentum.jl +++ b/src/momentum.jl @@ -349,7 +349,7 @@ function dpo(ta::TimeArray, n::Integer =...

Hi @femtotrader . `MarkTechnicals.jl` is built on `TimeSeries.jl`. So you can leverage lots of handy functions from `TimeSeries.jl`. And... to be honest, `MarketTechnicals` is still in developement stage and lacks...

>* I didn't like that the `TimeArray` type was immutable, as I often want to change column names or the date/ time index of time series objects There is `rename`...

> One important feature for a timeseries implementation is to be able to resample them easily. That's the reason why I did TimeSeriesResampler.jl and TimeFrames.jl. A question flashed into my...

> Pros of creating a new repo > If original author don't want your code, this is the only solution. You are free to create whatever you like! I agree...

@milktrader Could you tell more about this repo https://github.com/JuliaQuant/FinancialSeries.jl ?

I will look into it. I think we can implement a convertion function make candistick map to Renko first. Then add the plot recipe later.

ha, I see! Thanks for point that out!