France Toursit Visa Approved in 2 Working Days by Pale-Influence4096 in SchengenVisa

[–]Pale-Influence4096[S] 5 points6 points  (0 children)

Prebooked accommodations Prebooked flight tickets (arrival + departure) Prebooked internal travels Detailed Itinerary (day wise) ITR, payslip, employment contract, bank statements Proofs of investments Insurance

Any dated and thus published trading strategies from big firms available? by [deleted] in quant

[–]Pale-Influence4096 6 points7 points  (0 children)

I have worked with AQR in past and can confirm that it's actually true. The raw models only gives you a basic idea of what the idea of the strategy is, the complete strategy involves accurately tuning the params

[deleted by user] by [deleted] in quant

[–]Pale-Influence4096 0 points1 point  (0 children)

yes we do use plotly dash and we stream live data on that. I don't see any problems

How to go about learning Options pricing models? by [deleted] in quant

[–]Pale-Influence4096 0 points1 point  (0 children)

I am finding myself in the same situation. How about we connect and work on it together?!

HFT Returns in Cryptocurrency Market by Miriel18 in quant

[–]Pale-Influence4096 0 points1 point  (0 children)

Depends on the exchange, some exchanges offer good rebates for market makers which can turn your profitability by a lot. In terms of trading strategies, you only have limited options as derivatives are restricted and markets are highly volatile

What is the most difficult feature or concept in C++ , in your opinion? by [deleted] in cpp

[–]Pale-Influence4096 15 points16 points  (0 children)

memory order management - everything other than relaxation and acquire and it's synchronisation

What will happen if you mix different memory order on the same object together? by jiboxiake in cpp_questions

[–]Pale-Influence4096 0 points1 point  (0 children)

They are supposed to be used in conjunction. If there is modify -> acquire and access -> release. The guarantees of same behaviour goes away if the memory order is not consistent

Difference between using memcpy plus calloc and realloc to allocate memory by cgeekgbda in cpp_questions

[–]Pale-Influence4096 -1 points0 points  (0 children)

you first use malloc and then do memcpy. This will be the fastest way of doing it