Site update, report any bugs pls

Site update, report any bugs pls Everything has been updated as usual including the platform and necessary software to run that sits on it. If you see any wierd bugs, pls get in touch so I can pass along the yelling to the appropriate team. Thanks

How to insert ,update, delete into MongoDB NOSQL database with Python

How to insert ,update, delete into  MongoDB NOSQL database with  Python Watch this 30 minute video to guide you through this process for my database for my trading system   http://quantlabs.net/blog/2016/01/how-to-insert-update-delete-in-a-mongodb-nosql-database-with-python   Source code: Query #https://docs.mongodb.org/getting-started/python/query/ from pymongo import MongoClient client = MongoClient() # db = client.qln # cursor = db.qln.find({“positions.shortsymbol”: “ibm”}) # # for […]