Re: [Haskell-cafe] Interfacing real-time stocks data API

2013-10-09 Thread Alexey Uimanov
; testing trading systems. Are you planning to also build a trading system? > > Regards, > Miro > > > On Wed, Oct 9, 2013 at 10:28 AM, Alexey Uimanov wrote: > >> I did not find such a library, but I am interested in Haskell trading >> automation too. >> >> BT

Re: [Haskell-cafe] Interfacing real-time stocks data API

2013-10-09 Thread Alexey Uimanov
I did not find such a library, but I am interested in Haskell trading automation too. BTW, I am developing package for testing trading systems, it can just download historical data from some free russian stock services for now. https://github.com/s9gf4ult/hadan If you interested we could join fo

Re: [Haskell-cafe] Lifting IO actions into Applicatives

2013-10-01 Thread Alexey Uimanov
Maybe this is needed new typeclass ApplicativeTrans? 2013/10/1 Michael Snoyman > I'm wondering if anyone's run into this problem before, and if there's a > common solution. > > In Yesod, we have applicative forms (based originally on formlets). These > forms are instances of Applicative, but no

[Haskell-cafe] ANNOUNCE: HDBI-1.1.1 and friends

2013-09-11 Thread Alexey Uimanov
Hello, haskellers! I am glad to announce new tested version of HDBI-1.1.1 (Haskell Database Independent interface). Now it becomes much more databae-independent than before because of SQlite3 driver in addition to PostrgreSQL driver. What changed from version 1.0.0: 1. removed `affectedRows` fro

[Haskell-cafe] Freeing dependent resources

2013-08-13 Thread Alexey Uimanov
Hello, Haskellers. I am working on HDBI and I faced with the problem. There is an error when I close SQlite database, "unable to close due to unfinalized statements or unfinished backups". This problems occurs when there is some not finalized statements related to this database. So, I must prote

Re: [Haskell-cafe] ANNOUNCE: hdbi-1.0.0 and hdbi-postgresql-1.0.0

2013-07-31 Thread Alexey Uimanov
uestion marks inside the doublequoted identifiers, quoted literals and even dollar quoted literals 4.1.2.2. Dollar-Quoted String Constants<http://www.postgresql.org/docs/8.2/static/sql-syntax-lexical.html> 2013/7/31 Tom Ellis > On Wed, Jul 31, 2013 at 09:45:50AM +0600, Alexey Uimanov

Re: [Haskell-cafe] ANNOUNCE: hdbi-1.0.0 and hdbi-postgresql-1.0.0

2013-07-31 Thread Alexey Uimanov
> > Regard parameterized SQL: It might be worth using named parameters (e.g. > ":foo" and ":bar" or something like that) rather than "?" as > placeholders in SQL/prepared SQL. This will make it slightly more > flexible if you need to provide different SQL strings for different > databases, but want

[Haskell-cafe] ANNOUNCE: hdbi-1.0.0 and hdbi-postgresql-1.0.0

2013-07-30 Thread Alexey Uimanov
Hello, haskellers. This is the first release of HDBI (Haskell Database Independent interface). It is the fork of HDBC. HDBI has some improvements in design, it also has better testing and performance (mainly because of using Text instead of String anywhere). HDBI designed to be more flexible and co

[Haskell-cafe] Database conectivity in Haskell. HDBC-3 or something.

2013-07-15 Thread Alexey Uimanov
Hello, haskellers. I has made some rework of HDBC, if you are interested follow the link http://s9gf4ult.github.io/hdbc/Database-HDBC.html So, why did I made this ? Because I did not found good enough (inside and outside) common interface for database connectivity. What I mean is flexible and sim

[Haskell-cafe] Help me with space leaks

2012-09-25 Thread Alexey Uimanov
Hello. I am trying to write some thing in haskell and i need fast storage to store and select this things from storage. https://github.com/s9gf4ult/projs/tree/master/haskell/teststorage I am writing simple testing package to determine my needs and select the fastest storage and i have encountered