stopLoss 函数会导致以下错误:
Could not deduce (Text.Printf.PrintfType (m a0))
arising from the ambiguity check for `stopLoss'
from the context (Monad m,
Text.Printf.PrintfType (m b),
Text.Printf.PrintfType (m a))
bound by the inferred type for `stopLoss':
(Monad m, Text.Printf.PrintfType (m b),
Text.Printf.PrintfType (m a)) =>
Float -> Float -> Float -> m b
Possible fix:
add an instance declaration for (Text.Printf.PrintfType (m a0))
When checking that `stopLoss'
has the inferred type `forall (m :: * -> *) a b.
(Monad m, Text.Printf.PrintfType (m b),
Text.Printf.PrintfType (m a)) =>
Float -> Float -> Float -> m b'
Probable cause: the inferred type is ambiguous
功能:
stopLoss qty pb lossRate = do
let t = qty * pb * (1 + sxf)
printf "Stop Loss at: %.2f\n" ((pb - (t * lossRate) / qty) :: Float)
printf "Lost Money: %.2f\n" ((t * lossRate) :: Float)
任何建议表示赞赏!