# addVolume()

Places an order for adding volume to the position.

  • Interface
class MidaPosition {
    addVolume (volume: MidaDecimalConvertible): Promise<MidaOrder>;
}
  • Example 1
await myPosition.addVolume(1);
  • Example 2
await myPosition.addVolume("0.01");