Information
Username: | douglascvas |
Member since: | 02 Jan 2018 |
Last login: | 13 Apr 2023 |
Status: | Active |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 1 | 6 |
Forum Topics | 26 | 25 |
Jobs | 0 | 0 |
Last Algorithm Comments
Sorry @Mario, I haven't been receiving notifications of comments in this page.
For your question
amazing stuff.. is there however a way to get the last 2 fractals from the same side in a programmable way (like as a vlaue (index number) ?
Yes there is. You can use the function getPreviousOfSameSide()
Fractal lastFractal = fractalService.lastFractal;
Fractal prevFractal1 = lastFractal.getPreviousOfSameSide()
Fractal prevFractal2 = prevFractal1.getPreviousOfSameSide()
w.b.z feel free to use it as you wish. Consider it under MIT license.
Have you set the path to the sound file? Does the file really exist? Which format is it? .wav?
I have just added support for sound and email notifications Astroke
@Itmfar you can access the "fractalServices" field in the indicator.
It contains a list of FractalServices, one per timeframe you selected.
Using the FractalService you can access the last fractal using the field "lastFractal" and from there traverse to the previous ones using "previousFractal" or "nextFractal"
Take a look at the source code in github