-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add convenience conversion function from float/double to long? #34
Comments
@bherd-rb Currently we are leaving it up to the developer to choose the smallest unit of value and normalize that to a One possibility I had thought of was creating a type hierarchy for sealed abstract class Price[@specialized (Long, Double) +V](implicit ev: V => Double) {
def value: V
}
final case class DiscretePrice(value: Long) extends Price[Long]
final case class ContinuousPrice(value: Double) extends Price[Double] ...for micro-payments one could require the use of a continuous price. I still worry about numerical precision issues when using Doubles. This problem is equivalent to choosing a minimum tick size which would typically be specific to a particular type of tradable. I had not thought about using some sort of internal currency hierarchy a la Ethereum. I will think about this a bit more... |
Possibly relevant docs... https://www.w3.org/TR/Micropayment-Markup/ ...is there a reasonable value for a minimum tick size for a micropayment independent of type of tradable? What happens in combinatoric/multi-dimensional auctions where bundles of tradables are being auctioned? I guess minimum tick would be the minimum of the ticks for each tradable in the bundle? Should we consider adding a |
@davidrpugh Good guestions, indeed. I like the idea of adding a As an example for a minimum tick size: if we want to simulate an Ethereum-based system, the smallest possible value at the moment would be around 0,000000000000000042 USD (current exchange rate for 1 Wei). That's a multiplication factor of 1000000000000000000. |
@bherd-rb I will open a PR for adding a minimum tick size field for each tradable later today and we can discuss and think about issues with this approach. Simulating an Ethereum-based system is not a bad idea but using multiplication factors of 1000000000000000000 is probably not possible. This number is roughly 2^60 which is within a factor of 8 from the largest possible 64-bit long. |
More docs that might be relevant to the discussion... https://docs.oracle.com/javase/7/docs/api/java/util/Currency.html @phelps-sg do you have opinions? |
@bherd-rb Here is an interesting discussion of features that will be in Java 9 (which we can perhaps use for inspiration)... https://dzone.com/articles/looking-java-9-money-and |
@davidrpugh Sorry, I've completely forgotten about the price hierarchy. I'll have a look and give you feedback as quickly as possible. |
@bherd-rb No worries. The solution above does not provide a convenience function to convert doubles/floats to longs but rather attempts to provide the user with the choice to express prices using either (depending on the use case). |
@davidrpugh I like the idea of a price hierarchy! Here is a summary of my state of knowledge on representing money and currencies (please correct me if I'm wrong):
The Money and Currency API in Java 9 looks great. It would be worth considering as soon as it is available. |
@bherd-rb thanks for the comments. I particularly like your suggestion to incorporate |
@bherd-rb I came across this library for type-safe dimensional analysis that looks quite useful. If you scroll about half way down the README you will find a discussion of Money, exchange rates, etc. |
@davidrpugh We have recently switched from
double
tolong
for prices (I still think for good reasons). However, in the case of micropayments, prices will very likely be small non-integer numbers. In that case, manual conversion is required every time the value is to be passed to ESL. The conversion itself may not be trivial. For example, how should a value of 0.01 be translated to long? In theory, the developer would have to determine the smallest amount of interest in the respective simulation and make that corresponding with along
value of 1.Would it make sense to use some sort of internal currency hierarchy similar to that used in Ethereum in ESL? On top of that, we could then provide some convenience functions to perform conversions, e.g. from
double
tolong
.The text was updated successfully, but these errors were encountered: