Vadim Nicolai
Vadim Nicolai
https://docs.skynetlabs.com/developer-guides/deploy-github-actions
Hello, I have an MBP with M1 chip. I tried to run these commands on a fresh clone, but it fails. ``` ./scripts/init.sh install-toolchain cargo build --release ``` Let me...
*** **AroonOscillator** | № | Topic | Reality in **Rust** (`AroonOscillator`) | Reality in **Py/Cython** (`aroon.pyx`) | Status | Parity Note | |----|----------------------------|------------------------------------------------------------------|------------------------------------------------------|--------|---------------------------------------------------------------------------------------------------------------------------| | 1 | **Constructor API** | `try_new(period)...
### CCI | # | Topic / Area | Rust implementation (current `develop`) | Python / Cython implementation (current `HEAD`) | Parity status | Required / Suggested action to reach...
### RSI Parity Matrix | # | Concern | Rust (`RelativeStrengthIndex` struct) | Python binding (`RelativeStrengthIndex` class) | Parity status | Gaps / TODO | |---|---------|---------------------------------------|------------------------------------------------|--------------|-------------| | 1 | **Public...
### Reproduction link [https://github.com/ant-design/ant-design/issues/53706](https://github.com/ant-design/ant-design/issues/53706) ### Steps to reproduce ## Capturing the duplicate-ID accessibility errors in **Microsoft Edge** DevTools 1. **Open the page** *Start Microsoft Edge and navigate to* `http://localhost:3000/`. 2....
| **Cython / Python Method** | **Rust Method in `Instrument`** | **Notes on Parity** | |----------------------------------------|---------------------------------|--------------------------------------------------| | `symbol` (property) | `symbol(&self) -> &str` | Same return semantics (borrowed `&str`). |...
| Area | Item / Sub-task | Status | Key Facts & Follow-ups | |------|-----------------|--------|------------------------| | **Implementation** | Port all helper methods from Cython `Instrument` → Rust (`make_price`, `make_qty`, tick...
Introduce `check_positive_decimal` in **crates/core/src/correctness.rs** to enforce that `rust_decimal::Decimal` parameters are strictly positive. The helper replaces hand-rolled checks inside `validate_instrument_common`, tightening validation for fields such as `margin_init`. Comprehensive rstest cases cover...
Adds the `check_positive_money` helper to `crates/model/src/types/money.rs` and wires it into `validate_instrument_common` so `max_notional` / `min_notional` must be > 0. Includes focused unit tests covering positive, zero, and negative values to...