adf.createOrder({ // adf.createItem() does the same
});
adf.track(64344, 898361);
//Real number validation rules:
//1. Integer part (to the left of the decimal separator) can be up to 13 digits long. Anything longer than that is unsupported and will be registered as a 0 (zero).
//2. Decimal part (to the right of the decimal separator) can be up to 4 digits long. If you specify more than that, decimal part will be truncated (without rounding) to 4 decimal places.
//3. Digit grouping (e.g. thousand separators) are unsupported
//4. Resulting number should be less than 1000000000000 (1,e+12)
//5. Negative values are supported, with same restrictions as detailed above.