nimo23
nimo23
Maybe we should also rename the `ROCIndicator` to `PercentageChangeIndicator` because it should calculate the percentage change (of a selectable enum like, open, high, low, close, volume, trades or etc.) between...
>While backtesting a strategy that was using only the bar close price, **to optimize memory** I was creating bars with only the close price. The DurationBarAggregator fails as it tries...
>This does not feel like an important use-case to me So improving or ensuring the overall performance of the Eclipse platform is not an important use case? I'm also having...
>So outside of Eclipse you copy files every 10 secomds to the output folders of Java projects and with polling enabled you see rebuilds after the copy? Oh no. That's...
I find the real reason, it is indeed another issue but only happens when `Enable Refresh using native hooks or polling` is enabled. See https://github.com/victools/jsonschema-generator/issues/538 - I also added a...
>The REST interface is also available for EclipseStore: Well, firstly it's not a DBMS and secondly it doesn't work for containers like Wildfly or Quarkus. So it's not an out-of-the-box...
>what benefits would aggregating bars have over simply subscribing to the price data directly? for example: - minimizing api credits for market data requests - prevent api calls and getting...
>For live trading this approach is less practical because it requires recreating the entire BarSeries or List repeatedly (along with the Strategy). While this is still feasible, it introduces a...
>Users don't need to know all the indicators in advance, simply the one they want to use and thus can search for. For example: "User x wants to use indicators...
>is the getById method in your interface defined as a default method? Yes, I corrected it above. It is: ``` @GET @Path("/{id}") default Response getById(@PathParam("id") Integer id) { // implemenation...