Results 16 comments of dharmatech

Hi Anes. Add `~/scheme` directory to your `IKARUS_LIBRARY_PATH` environment variable.

Yes, this would be awesome! When the range slider is present on a candlestick chart, it seems we're unable to zoom in on the y-axis. When the range slider is...

Wow, this is impressive Aleksey! Very cool that you were able to backport everything. I'll definitely leave this pull request here as a reference in case anyone else needs to...

> (except that operator priority caught me: `1 - q^n` turned out to be `(1 - q)^n` while I meant `1 - (q^n)`) Yes, unfotunately the `^` operator in C#...

> I'll open some issues to talk about problems and possible new features. Yes, please do!

> C# 6 was not convenient for me because I teach students and there is Visual Studio 2012 in classrooms, VS 2012 does not support C# 6. > ... >...

Hello! I haven't built with VS2013 or VS2015 in quite some time. I've been exclusively using VS2017.

Symbolism is now available on nuget: https://www.nuget.org/packages/Symbolism/

Yes, a `**` operator would be nice. However, would it be possible to add this operator and not interfere with the [dereference operator](https://msdn.microsoft.com/en-us/library/z19tbbca.aspx) (`*`)? I guess since the dereference operator...

It's not clear to me that `**` as an operator would cause an issue due to a conflict with the dereferencing operator. Currently, in C#: * `&` is used to...